Redirection - Version 3.0

Version Description

  • Upgrades the database to support IPv6. Please backup your data and visit the Redirection settings to perform the upgrade
  • Permissions changed from 'administrator' role to 'manage_options' capability

=

Download this release

Release Info

Developer johnny5
Plugin Icon 128x128 Redirection
Version 3.0
Comparing to
See all releases

Code changes from version 2.10.1 to 3.0

Files changed (75) hide show
  1. api/api-404.php +46 -0
  2. api/api-export.php +32 -0
  3. api/api-group.php +92 -0
  4. api/api-import.php +52 -0
  5. api/api-log.php +46 -0
  6. api/api-plugin.php +43 -0
  7. api/api-redirect.php +73 -0
  8. api/api-settings.php +40 -0
  9. fileio/csv.php +1 -2
  10. locale/json/redirection-ar_AR.json +0 -1
  11. locale/json/redirection-be_BY.json +0 -1
  12. locale/json/redirection-ca.json +0 -1
  13. locale/json/redirection-cs_CZ.json +0 -1
  14. locale/json/redirection-da.json +0 -1
  15. locale/json/redirection-da_DK.json +0 -1
  16. locale/json/redirection-de_DE.json +1 -1
  17. locale/json/redirection-el_GR.json +0 -1
  18. locale/json/redirection-en_CA.json +1 -1
  19. locale/json/redirection-en_GB.json +1 -1
  20. locale/json/redirection-es_ES.json +1 -1
  21. locale/json/redirection-fa_IR.json +0 -1
  22. locale/json/redirection-fi.json +0 -1
  23. locale/json/redirection-fr_FR.json +1 -1
  24. locale/json/redirection-he_IL.json +0 -1
  25. locale/json/redirection-hi_IN.json +0 -1
  26. locale/json/redirection-hr.json +0 -1
  27. locale/json/redirection-hu_HU.json +0 -1
  28. locale/json/redirection-id_ID.json +0 -1
  29. locale/json/redirection-it_IT.json +1 -1
  30. locale/json/redirection-ja.json +1 -1
  31. locale/json/redirection-lt_LT.json +0 -1
  32. locale/json/redirection-nl_NL.json +0 -1
  33. locale/json/redirection-pl_PL.json +0 -1
  34. locale/json/redirection-pt_BR.json +0 -1
  35. locale/json/redirection-pt_PT.json +0 -1
  36. locale/json/redirection-ro_RO.json +0 -1
  37. locale/json/redirection-ru_RU.json +0 -1
  38. locale/json/redirection-sk_SK.json +0 -1
  39. locale/json/redirection-sv_SE.json +1 -1
  40. locale/json/redirection-tr_TR.json +0 -1
  41. locale/json/redirection-uk.json +0 -1
  42. locale/json/redirection-zh_CN.json +0 -1
  43. locale/json/redirection-zh_TW.json +1 -1
  44. locale/redirection-ar_AR.mo +0 -0
  45. locale/redirection-ar_AR.po +0 -315
  46. locale/redirection-be_BY.mo +0 -0
  47. locale/redirection-be_BY.po +0 -988
  48. locale/redirection-ca.mo +0 -0
  49. locale/redirection-ca.po +0 -782
  50. locale/redirection-cs_CZ.mo +0 -0
  51. locale/redirection-cs_CZ.po +0 -1135
  52. locale/redirection-da.mo +0 -0
  53. locale/redirection-da.po +0 -909
  54. locale/redirection-da_DK.mo +0 -0
  55. locale/redirection-da_DK.po +0 -991
  56. locale/redirection-de_DE.po +2 -2
  57. locale/redirection-el_GR.mo +0 -0
  58. locale/redirection-el_GR.po +0 -929
  59. locale/redirection-en_CA.mo +0 -0
  60. locale/redirection-en_CA.po +20 -20
  61. locale/redirection-en_GB.mo +0 -0
  62. locale/redirection-en_GB.po +3 -3
  63. locale/redirection-es_ES.po +2 -2
  64. locale/redirection-fa_IR.mo +0 -0
  65. locale/redirection-fa_IR.po +0 -1073
  66. locale/redirection-fi.mo +0 -0
  67. locale/redirection-fi.po +0 -782
  68. locale/redirection-fr_FR.mo +0 -0
  69. locale/redirection-fr_FR.po +47 -47
  70. locale/redirection-he_IL.mo +0 -0
  71. locale/redirection-he_IL.po +0 -315
  72. locale/redirection-hi_IN.mo +0 -0
  73. locale/redirection-hi_IN.po +0 -1024
  74. locale/redirection-hr.mo +0 -0
  75. locale/redirection-hr.po +0 -266
api/api-404.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Redirection_Api_404 extends Redirection_Api_Filter_Route {
4
+ public function __construct( $namespace ) {
5
+ $filters = array( 'ip', 'url', 'url-exact' );
6
+
7
+ register_rest_route( $namespace, '/404', array(
8
+ 'args' => $this->get_filter_args( $filters, $filters ),
9
+ $this->get_route( WP_REST_Server::READABLE, 'route_404' ),
10
+ $this->get_route( WP_REST_Server::DELETABLE, 'route_delete_all' ),
11
+ ) );
12
+
13
+ $this->register_bulk( $namespace, '/bulk/404/(?P<action>delete)', $filters, $filters, 'route_bulk' );
14
+ }
15
+
16
+ public function route_404( WP_REST_Request $request ) {
17
+ return RE_Filter_Log::get( 'redirection_404', 'RE_404', $request->get_params() );
18
+ }
19
+
20
+ public function route_bulk( WP_REST_Request $request ) {
21
+ array_map( array( 'RE_404', 'delete' ), $request['items'] );
22
+ return $this->route_404( $request );
23
+ }
24
+
25
+ public function route_delete_all( WP_REST_Request $request ) {
26
+ $params = $request->get_params();
27
+ $filter = false;
28
+ $filterBy = false;
29
+
30
+ if ( isset( $params['filter'] ) ) {
31
+ $filter = $params['filter'];
32
+ }
33
+
34
+ if ( isset( $params['filterBy'] ) ) {
35
+ $filterBy = $params['filterBy'];
36
+ }
37
+
38
+ RE_404::delete_all( $filterBy, $filter );
39
+
40
+ unset( $params['filterBy'] );
41
+ unset( $params['filter'] );
42
+ unset( $params['page'] );
43
+
44
+ return RE_Filter_Log::get( 'redirection_404', 'RE_404', $params );
45
+ }
46
+ }
api/api-export.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Redirection_Api_Export extends Redirection_Api_Route {
4
+ public function __construct( $namespace ) {
5
+ register_rest_route( $namespace, '/export/(?P<module>1|2|3|all)/(?P<format>csv|apache|nginx|json)', array(
6
+ $this->get_route( WP_REST_Server::READABLE, 'route_export' ),
7
+ ) );
8
+ }
9
+
10
+ public function route_export( WP_REST_Request $request ) {
11
+ if ( ! function_exists( 'get_plugin_data' ) ) {
12
+ include_once ABSPATH.'/wp-admin/includes/plugin.php';
13
+ }
14
+
15
+ $module = $request['module'];
16
+ $format = 'json';
17
+
18
+ if ( in_array( $request['format'], array( 'csv', 'apache', 'nginx', 'json' ) ) ) {
19
+ $format = $request['format'];
20
+ }
21
+
22
+ $export = Red_FileIO::export( $module, $format );
23
+ if ( $export === false ) {
24
+ return $this->add_error_details( new WP_Error( 'redirect', 'Invalid module' ), __LINE__ );
25
+ }
26
+
27
+ return array(
28
+ 'data' => $export['data'],
29
+ 'total' => $export['total'],
30
+ );
31
+ }
32
+ }
api/api-group.php ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Redirection_Api_Group extends Redirection_Api_Filter_Route {
4
+ public function __construct( $namespace ) {
5
+ $filters = array( 'name', 'module' );
6
+ $orders = array( 'name', 'id' );
7
+
8
+ register_rest_route( $namespace, '/group', array(
9
+ 'args' => $this->get_filter_args( $filters, $orders ),
10
+ $this->get_route( WP_REST_Server::READABLE, 'route_list' ),
11
+ array_merge(
12
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_create' ),
13
+ array( 'args' => $this->get_group_args() )
14
+ ),
15
+ ) );
16
+
17
+ register_rest_route( $namespace, '/group/(?P<id>[\d]+)', array(
18
+ 'args' => $this->get_group_args(),
19
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_update' ),
20
+ ) );
21
+
22
+ $this->register_bulk( $namespace, '/bulk/group/(?P<action>delete|enable|disable)', $filters, $orders, 'route_bulk' );
23
+ }
24
+
25
+ private function get_group_args() {
26
+ return array(
27
+ 'moduleId' => array(
28
+ 'description' => 'Module ID',
29
+ 'type' => 'integer',
30
+ 'minimum' => 0,
31
+ 'maximum' => 2,
32
+ 'required' => true,
33
+ ),
34
+ 'name' => array(
35
+ 'description' => 'Group name',
36
+ 'type' => 'string',
37
+ 'required' => true,
38
+ ),
39
+ );
40
+ }
41
+
42
+ public function route_list( WP_REST_Request $request ) {
43
+ return Red_Group::get_filtered( $request->get_params() );
44
+ }
45
+
46
+ public function route_create( WP_REST_Request $request ) {
47
+ $params = $request->get_params( $request );
48
+ $group = Red_Group::create( isset( $params['name'] ) ? $params['name'] : '', isset( $params['moduleId'] ) ? $params['moduleId'] : 0 );
49
+
50
+ if ( $group ) {
51
+ return Red_Group::get_filtered( $params );
52
+ }
53
+
54
+ return $this->add_error_details( new WP_Error( 'redirect', 'Invalid group or parameters' ), __LINE__ );
55
+ }
56
+
57
+ public function route_update( WP_REST_Request $request ) {
58
+ $params = $request->get_params( $request );
59
+ $group = Red_Group::get( intval( $request['id'], 10 ) );
60
+
61
+ if ( $group ) {
62
+ $result = $group->update( $params );
63
+
64
+ if ( $result ) {
65
+ return array( 'item' => $group->to_json() );
66
+ }
67
+ }
68
+
69
+ return $this->add_error_details( new WP_Error( 'redirect', 'Invalid group details' ), __LINE__ );
70
+ }
71
+
72
+ public function route_bulk( WP_REST_Request $request ) {
73
+ $action = $request['action'];
74
+ $items = $request['items'];
75
+
76
+ foreach ( $items as $item ) {
77
+ $group = Red_Group::get( intval( $item, 10 ) );
78
+
79
+ if ( $group ) {
80
+ if ( $action === 'delete' ) {
81
+ $group->delete();
82
+ } else if ( $action === 'disable' ) {
83
+ $group->disable();
84
+ } else if ( $action === 'enable' ) {
85
+ $group->enable();
86
+ }
87
+ }
88
+ }
89
+
90
+ return $this->route_list( $request );
91
+ }
92
+ }
api/api-import.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Redirection_Api_Import extends Redirection_Api_Route {
4
+ public function __construct( $namespace ) {
5
+ register_rest_route( $namespace, '/import/file/(?P<group_id>\d+)', array(
6
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_import_file' ),
7
+ ) );
8
+
9
+ register_rest_route( $namespace, '/import/plugin', array(
10
+ $this->get_route( WP_REST_Server::READABLE, 'route_plugin_import_list' ),
11
+ ) );
12
+
13
+ register_rest_route( $namespace, '/import/plugin/(?P<plugin>.*?)', array(
14
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_plugin_import' ),
15
+ ) );
16
+ }
17
+
18
+ public function route_plugin_import_list( WP_REST_Request $request ) {
19
+ include_once dirname( dirname( __FILE__ ) ).'/models/importer.php';
20
+
21
+ return array( 'importers' => Red_Plugin_Importer::get_plugins() );
22
+ }
23
+
24
+ public function route_plugin_import( WP_REST_Request $request ) {
25
+ include_once dirname( dirname( __FILE__ ) ).'/models/importer.php';
26
+
27
+ $groups = Red_Group::get_all();
28
+
29
+ return array( 'imported' => Red_Plugin_Importer::import( $request['plugin'], $groups[ 0 ]['id'] ) );
30
+ }
31
+
32
+ public function route_import_file( WP_REST_Request $request ) {
33
+ $upload = $request->get_file_params();
34
+ $upload = isset( $upload[ 'file' ] ) ? $upload[ 'file' ] : false;
35
+ $group_id = $request['group_id'];
36
+
37
+ if ( $upload && is_uploaded_file( $upload['tmp_name'] ) ) {
38
+ $count = Red_FileIO::import( $group_id, $upload );
39
+
40
+ if ( $count !== false ) {
41
+ return array(
42
+ 'imported' => $count,
43
+ );
44
+ }
45
+
46
+ return $this->add_error_details( new WP_Error( 'redirect', 'Invalid group' ), __LINE__ );
47
+ }
48
+
49
+ return $this->add_error_details( new WP_Error( 'redirect', 'Invalid file' ), __LINE__ );
50
+ }
51
+
52
+ }
api/api-log.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Redirection_Api_Log extends Redirection_Api_Filter_Route {
4
+ public function __construct( $namespace ) {
5
+ $filters = array( 'url', 'ip', 'url-exact' );
6
+ $orders = array( 'url', 'ip' );
7
+
8
+ register_rest_route( $namespace, '/log', array(
9
+ 'args' => $this->get_filter_args( $filters, $orders ),
10
+ $this->get_route( WP_REST_Server::READABLE, 'route_log' ),
11
+ $this->get_route( WP_REST_Server::DELETABLE, 'route_delete_all' ),
12
+ ) );
13
+
14
+ $this->register_bulk( $namespace, '/bulk/log/(?P<action>delete)', $filters, $filters, 'route_bulk' );
15
+ }
16
+
17
+ public function route_log( WP_REST_Request $request ) {
18
+ return $this->get_logs( $request->get_params() );
19
+ }
20
+
21
+ public function route_bulk( WP_REST_Request $request ) {
22
+ array_map( array( 'RE_Log', 'delete' ), $request['items'] );
23
+ return $this->route_log( $request );
24
+ }
25
+
26
+ public function route_delete_all( WP_REST_Request $request ) {
27
+ $params = $request->get_params();
28
+ $filter = false;
29
+ $filterBy = false;
30
+
31
+ if ( isset( $params['filter'] ) ) {
32
+ $filter = $params['filter'];
33
+ }
34
+
35
+ if ( isset( $params['filterBy'] ) && in_array( $params['filterBy'], array( 'url', 'ip', 'url-exact' ), true ) ) {
36
+ $filterBy = $params['filterBy'];
37
+ }
38
+
39
+ RE_Log::delete_all( $filterBy, $filter );
40
+ return $this->route_log( $request );
41
+ }
42
+
43
+ private function get_logs( array $params ) {
44
+ return RE_Filter_Log::get( 'redirection_logs', 'RE_Log', $params );
45
+ }
46
+ }
api/api-plugin.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * 'Plugin' functions for Redirection
5
+ */
6
+ class Redirection_Api_Plugin extends Redirection_Api_Route {
7
+ public function __construct( $namespace ) {
8
+ register_rest_route( $namespace, '/plugin', array(
9
+ $this->get_route( WP_REST_Server::READABLE, 'route_status' ),
10
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_fixit' ),
11
+ $this->get_route( WP_REST_Server::DELETABLE, 'route_delete' ),
12
+ ) );
13
+ }
14
+
15
+ public function route_status( WP_REST_Request $request ) {
16
+ include_once dirname( REDIRECTION_FILE ).'/models/fixer.php';
17
+
18
+ $fixer = new Red_Fixer();
19
+ return $fixer->get_status();
20
+ }
21
+
22
+ public function route_fixit( WP_REST_Request $request ) {
23
+ include_once dirname( REDIRECTION_FILE ).'/models/fixer.php';
24
+
25
+ $fixer = new Red_Fixer();
26
+ return $fixer->fix( $fixer->get_status() );
27
+ }
28
+
29
+ public function route_delete() {
30
+ if ( is_multisite() ) {
31
+ return $this->getError( 'Multisite installations must delete the plugin from the network admin', __LINE__ );
32
+ }
33
+
34
+ $plugin = Redirection_Admin::init();
35
+ $plugin->plugin_uninstall();
36
+
37
+ $current = get_option( 'active_plugins' );
38
+ array_splice( $current, array_search( basename( dirname( REDIRECTION_FILE ) ).'/'.basename( REDIRECTION_FILE ), $current ), 1 );
39
+ update_option( 'active_plugins', $current );
40
+
41
+ return array( 'location' => admin_url().'plugins.php' );
42
+ }
43
+ }
api/api-redirect.php ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Redirection_Api_Redirect extends Redirection_Api_Filter_Route {
4
+ public function __construct( $namespace ) {
5
+ $filters = array( 'url', 'group' );
6
+ $orders = array( 'url', 'last_count', 'last_access', 'position', 'id' );
7
+
8
+ register_rest_route( $namespace, '/redirect', array(
9
+ 'args' => $this->get_filter_args( $filters, $orders ),
10
+ $this->get_route( WP_REST_Server::READABLE, 'route_list' ),
11
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_create' ),
12
+ ) );
13
+
14
+ register_rest_route( $namespace, '/redirect/(?P<id>[\d]+)', array(
15
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_update' ),
16
+ ) );
17
+
18
+ $this->register_bulk( $namespace, '/bulk/redirect/(?P<action>delete|enable|disable|reset)', $filters, $orders, 'route_bulk' );
19
+ }
20
+
21
+ public function route_list( WP_REST_Request $request ) {
22
+ return Red_Item::get_filtered( $request->get_params() );
23
+ }
24
+
25
+ public function route_create( WP_REST_Request $request ) {
26
+ $redirect = Red_Item::create( $request->get_params() );
27
+
28
+ if ( is_wp_error( $redirect ) ) {
29
+ return $this->add_error_details( $redirect, __LINE__ );
30
+ }
31
+
32
+ return $this->route_list( $request );;
33
+ }
34
+
35
+ public function route_update( WP_REST_Request $request ) {
36
+ $params = $request->get_params();
37
+ $redirect = Red_Item::get_by_id( intval( $params['id'], 10 ) );
38
+
39
+ if ( $redirect ) {
40
+ $result = $redirect->update( $params );
41
+
42
+ if ( is_wp_error( $result ) ) {
43
+ return $this->add_error_details( $result, __LINE );
44
+ }
45
+
46
+ return array( 'item' => $redirect->to_json() );
47
+ }
48
+
49
+ return $this->add_error_details( new WP_Error( 'redirect', 'Invalid redirect details' ), __LINE__ );
50
+ }
51
+
52
+ public function route_bulk( WP_REST_Request $request ) {
53
+ $action = $request['action'];
54
+
55
+ foreach ( $request['items'] as $item ) {
56
+ $redirect = Red_Item::get_by_id( intval( $item, 10 ) );
57
+
58
+ if ( $redirect ) {
59
+ if ( $action === 'delete' ) {
60
+ $redirect->delete();
61
+ } else if ( $action === 'disable' ) {
62
+ $redirect->disable();
63
+ } else if ( $action === 'enable' ) {
64
+ $redirect->enable();
65
+ } else if ( $action === 'reset' ) {
66
+ $redirect->reset();
67
+ }
68
+ }
69
+ }
70
+
71
+ return $this->route_list( $request );
72
+ }
73
+ }
api/api-settings.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Redirection_Api_Settings extends Redirection_Api_Route {
4
+ public function __construct( $namespace ) {
5
+ register_rest_route( $namespace, '/setting', array(
6
+ $this->get_route( WP_REST_Server::READABLE, 'route_settings' ),
7
+ $this->get_route( WP_REST_Server::EDITABLE, 'route_save_settings' ),
8
+ ) );
9
+ }
10
+
11
+ public function route_settings( WP_REST_Request $request ) {
12
+ return array(
13
+ 'settings' => red_get_options(),
14
+ 'groups' => $this->groups_to_json( Red_Group::get_for_select() ),
15
+ 'installed' => get_home_path(),
16
+ 'canDelete' => ! is_multisite(),
17
+ 'post_types' => red_get_post_types(),
18
+ );
19
+ }
20
+
21
+ public function route_save_settings( WP_REST_Request $request ) {
22
+ red_set_options( $request->get_params() );
23
+
24
+ return $this->route_settings( $request );
25
+ }
26
+
27
+ private function groups_to_json( $groups, $depth = 0 ) {
28
+ $items = array();
29
+
30
+ foreach ( $groups as $text => $value ) {
31
+ if ( is_array( $value ) && $depth === 0 ) {
32
+ $items[] = (object)array( 'text' => $text, 'value' => $this->groups_to_json( $value, 1 ) );
33
+ } else {
34
+ $items[] = (object)array( 'text' => $value, 'value' => $text );
35
+ }
36
+ }
37
+
38
+ return $items;
39
+ }
40
+ }
fileio/csv.php CHANGED
@@ -4,8 +4,7 @@ class Red_Csv_File extends Red_FileIO {
4
  const CSV_SOURCE = 0;
5
  const CSV_TARGET = 1;
6
  const CSV_REGEX = 2;
7
- const CSV_TYPE = 3;
8
- const CSV_CODE = 4;
9
 
10
  public function force_download() {
11
  parent::force_download();
4
  const CSV_SOURCE = 0;
5
  const CSV_TARGET = 1;
6
  const CSV_REGEX = 2;
7
+ const CSV_CODE = 3;
 
8
 
9
  public function force_download() {
10
  parent::force_download();
locale/json/redirection-ar_AR.json DELETED
@@ -1 +0,0 @@
1
- {"":{"project-id-version":"Redirection 1.7.26","report-msgid-bugs-to":"","pot-creation-date":"2007-08-10 11:07+0800","po-revision-date":"2010-05-23 13:48+0200","last-translator":"Aiman <aiman@gim.co.il>","language-team":"Salim Jerry <jerrygo75@yahoo.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-sourcecharset":"utf-8","x-poedit-keywordslist":"__;_e;__ ;_e","x-poedit-basepath":".","x-poedit-language":"Arabic","x-poedit-country":"UNITED ARAB EMIRATES"},"How many widgets would you like?":[null,"عدد الاضافات?"],"Save":[null,"احفظ"],"Redirection":[null,"توجيهات"],"Your logs have been deleted":[null,"لقد تم حذف السجلات"],"Previous":[null,"الى الخلف"],"Next":[null,"التالي"],"404 Report for: ":[null,"404 Report for: "],"Redirect based on login status":[null,"Redirect based on login status"],"Logged in URL":[null,"Logged in URL"],"Logged out URL":[null,"Logged out URL"],"An empty URL means the source URL is not redirected when the user is logged in/logged out.":[null,"An empty URL means the source URL is not redirected when the user is logged in/logged out."],"Redirect to a random WordPress post":[null,"اعادة التوجيه لبوست عشوائي"],"Redirect to one of several URLs":[null,"توجيه الى واحد من عناوينURL"],"Target URL":[null,"URL هدف"],"Redirect based on referrer":[null,"Redirect based on referrer"],"Referrer":[null,"מפנה"],"Referrer Regex":[null,"Referrer Regex"],"URL from referrer":[null,"URL from referrer"],"Not from referrer":[null,"Not from referrer"],"An empty URL means the source URL is not redirected.":[null,"المقصود URL خالي-URL الاصل لا يعتبر توجيه."],"Simple redirection":[null,"توجيه بسيط"],"Redirection 404 Log":[null,"Redirection 404 Log"],"You have no 404 logs!":[null,"لا يوجد سجلات اخطاء 404."],"Delete All 404s":[null,"حذف جميع 404"],"This will delete all logged 404 errors. Please be sure this is what you want to do.":[null,"هذه العملية قد تحذف جميع سجلات اخطاء 404.هل انت متأكد من الاستمرار؟"],"Are you sure?":[null,"هل انت متأكد؟"],"Add redirection":[null,"اضافة توجيه"],"Delete":[null,"احذف"],"at":[null,"عند"],"Source URL":[null,"عنوان الاصل"],"User Agent":[null,"User Agent"],"IP":[null,"IP"],"Add new redirection":[null,"اضافة توجيه"],"Type":[null,"نمط"],"Method":[null,"اسلوب"],"Pass-through":[null,"Pass-through"],"Regex":[null,"Regex"],"Add Redirection":[null,"اضافة توجيه"],"Please wait...":[null,"من فضلك انتظر....."],"Reset":[null,"اعادة تعيين"],"Last User":[null,"المستخدم الاخير"],"Open referrer":[null,"توجيه مفتوح"],"Last Referrer":[null,"التوجيه الاخير"],"Cancel":[null,"الغي"],"Redirection Log":[null,"سجلات التوجيهات"],"You have no logs!":[null,"لا يوجد سجلات"],"Delete All Logs":[null,"حذف جميع"],"Redirected by":[null,"وجه بواسطة"],"for":[null,"for"],"Options":[null,"خصائص"],"Create 301 when post slug changes":[null,"انتاج 301 عندما يكون slug البوست متغير"],"Redirect index.php/index.html":[null,"وجه index.php/index.html"],"Root domain":[null,"الملقم الاساسي"],"No":[null,"لا"],"Strip www":[null,"احذف www"],"Add www":[null,"اضف www"],"Auto-generate URL":[null,"انتاج بشكل تلقائي URL"],"Globally redirect unknown 404 errors":[null,"اخطاء غير معروفة للتوجيهات الكلية من 404"],"Log 404 errors":[null,"سجل خطأ 404"],"Check for updates":[null,"افحص التحديثات"],"Update":[null,"حدث"],"Search":[null,"بحث"],"Per page":[null,"لكل صفحة"],"go":[null,"نفذ"],"%s Redirections":[null,"%s Redirections"],"You have no redirections.":[null,"لا يوجد توجيهات"],"%s ago":[null,"%s ago"]}
 
locale/json/redirection-be_BY.json DELETED
@@ -1 +0,0 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection 2.1.20","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2011-07-17 10:14:58+00:00","po-revision-date":"2011-11-04 09:20+0200","language-team":"Web Geeks","last-translator":"","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;","x-poedit-language":"Belarusian","x-poedit-country":"BELARUS"},"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s імпартавана %s у %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"Імпарт XML даступны толькі з PHP5, у вас усталяваны PHP4"],"Groups for module":[null,"Групы для модуля"],"Module":[null,"Модуль"],"Search":[null,"Пошук"],"go":[null,"наперад"],"Hits":[null,"Лічыльнік"],"Name":[null,"Назва"],"Select All":[null,"Абраць усё"],"Toggle":[null,"Вкл/Выкл"],"Reset Hits":[null,"Абнуліць лічыльнік"],"Delete":[null,"Выдаліць"],"Move To":[null,"Перамясціць"],"Go":[null,"Наперад"],"re-order":[null,"памяняць месцамі"],"save order":[null,"захаваць парадак"],"You have no groups in this module.":[null,"Няма груп у дадзеным модулі"],"Add Group":[null,"Дадаць групу"],"Add":[null,"Дадаць"],"No items have been selected":[null,"Нічога не абрана"],"Are you sure?":[null,"Вы ўпэўнены?"],"Redirects":[null,"Перанакіраванні"],"Groups":[null,"Групы"],"Modules":[null,"Модулі"],"Log":[null,"Часопіс"],"Options":[null,"Налады"],"Support":[null,"Падтрымка"],"View as":[null,"Паглядзець як"],"CSV":[null,"CSV"],"XML":[null,"XML"],"Apache":[null,"Apache"],"RSS":[null,"RSS"],"edit":[null,"кіраваць"],"delete":[null,"выдаліць"],"reset":[null,"скінуць"],"Redirection Log":[null,"Часопіс перанакіраванняў"],"Bulk Actions":[null,"Масавыя дзеянні"],"Apply":[null,"Ужыць"],"Group":[null,"Група"],"Filter":[null,"Фільтр"],"Date":[null,"Дата"],"Source URL":[null,"URL крыніцы"],"Referrer":[null,"Реферер"],"IP":[null,"IP"],"There are no logs to display!":[null,"Часопісы адсутнічаюць!"],"Process Current Logs":[null,"Дзеянні з бягучым часопісам"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Гэтыя дзеянні крануць усіх наяўных у наш час часопісаў (пошук па часопісе будзе абмежаваны)"],"Delete Logs":[null,"Выдаліць часопісы"],"Redirections for group":[null,"Перанакіраванне для групы"],"Last Access":[null,"Апошні"],"Type":[null,"Тып"],"URL":[null,"URL"],"Position":[null,"Сартаванне"],"You have no redirections.":[null,"Няма перанакіраванняў"],"Redirect to":[null,"Перанакіраваць на"],"Redirected by":[null,"Перанакіравана"],"for":[null,"для"],"User Agent":[null,"User-Agent"],"disabled":[null,"адключана"],"%s by matching %s":[null,"%s супастаўленне %s"],"Title":[null,"Назва"],"optional":[null,"не абавязкова"],"Regex":[null,"Рэгулярны выраз"],"Save":[null,"Захаваць"],"Cancel":[null,"Адмена"],"Add new redirection":[null,"Дадаць новае перанакіраванне"],"Your redirection has been added.":[null,"Ваша правіла перанакіравання дададзена."],"Match":[null,"Супадзенне"],"Action":[null,"Дзеянне"],"Regular expression":[null,"Рэгулярны выраз"],"Target URL":[null,"URL прызначэнні"],"Add Redirection":[null,"Дадаць перанакіраванне"],"edit group":[null,"кіраваць групу"],"Details":[null,"Дэталі"],"Items":[null,"Элементы"],"Operations":[null,"Дзеянні"],"Note: Hits are dependant on log entries":[null,"Нататка: сведчанні лічыльніка залежаць ад запісаў у часопісе"],"You have no modules defined yet":[null,"Вы не вызначылі модулі"],"Add Module":[null,"Дадаць модуль"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Модуль уяўляе сабою элемент кіравання, які вызначае як апрацоўваюцца перанакіраванні. Элементы модуля WordPress апрацоўваюцца WordPress, элементы модуля Apache апрацоўваюцца файлам <code>.htaccess</code> і элементы модуля 404 уплываюць на журналяванне памылак 404"],"Create":[null,"Стварыць"],"Redirection Support":[null,"Падтрымка"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Гэта ўбудова абсалютна вольны для выкарыстання - жыццё выдатная і дзіўная! Тым не менш, ён патрабуе шмат часу і высілкаў у распрацоўцы і калі ён быў вам карысны, вы можаце падтрымаць яго далейшае развіццё, <strong>зрабіўшы невялікае ахвяраванне</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Гэта будзе для мяне стымулам працягваць займацца распрацоўкай дадзенай убудовы, марнаваць шмат часу на аказанне падтрымкі, у тым ліку на рэалізацыю новых прапанаваных магчымасцяў. Вы атрымліваеце новыя праграмы, а я працягваю гэтым займацца. Усё застаюцца ў выйгрышы."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Калі вы выкарыстоўваеце дадзеная ўбудова ў камерцыйных праектах ці лічыце, што ён быў вам асабліва карысны, то цалкам магчыма, што вы захочаце зрабіць <strong>камерцыйны ўнёсак</strong>."],"Individual<br/>Donation":[null,"Індывідуальны<br/>унёсак"],"Commercial<br/>Donation":[null,"Камерцыйны<br/>унёсак"],"Translations":[null,"Перакладнікі"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Калі вы валодаеце іншай мовай, вы можаце аказаць дапамогу, зрабіўшы пераклад:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Усе перакладнікі атрымліваюць спасылку на свой сайт з хатняй старонкі ўбудовы на <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> і <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, а таксама маюць магчымасць атрымліваць індывідуальную падтрымку."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Поўную інфармацыю пра падрыхтоўку перакладу можна знайсці ў <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">кіраўніцтве па перакладзе ўбудоў для WordPress</a>."],"Auto-generate URL":[null,"Аўтаматычная генерацыя URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Выкарыстоўваецца для аўтаматычнай генерацыі URL, калі URL не прадстаўлены. Вы можаце выкарыстоўваць адмысловыя тэгі $dec$ ці $hex$ для ўстаўкі ўнікальнага ID (дзесятковыя ці шаснаццатковыя)"],"IP Lookup Service":[null,"Сэрвіс дазволу імёнаў па IP"],"Plugin Support":[null,"Падтрымка ўбудовы"],"I'm a nice person and I have helped support the author of this plugin":[null,"Я - добры чалавек і я падтрымаў аўтара дадзенай убудовы"],"Logging":[null,"Часопіс"],"log redirected requests":[null,"весці часопіс запытаў перанакіраванняў"],"log 404 Not Found requests":[null,"весці часопіс запытаў 404"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Калі вашы перанакіраваныя URL наведваюцца вельмі часта і/ці ваш сайт вельмі загружаны і старонкі часта бываюць не знойдзены, зніміце сцяжок з адной ці абедзвюх гэтых опцый каб адключыць вядзенне часопіса і тым самым зменшыць загрузку базы дадзеных."],"Expire Logs":[null,"Час жыцця часопіса"],"days (enter 0 for no expiry)":[null,"дзён (увядзіце 0 для неабмежаванага часу)"],"RSS Token":[null,"Токен RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Унікальны радок для доступу да RSS фиду ўбудовы (пакіньце пусты для аўтаматычнай генерацыі)"],"URL Monitoring":[null,"Адсочванне URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Вы можаце ўключыць сачэнне за зменай URL і аўтаматычна ствараць перанакіраванне ў вызначанай групе."],"Post &amp; Page URLs":[null,"URL запісаў і старонак"],"Don't monitor":[null,"Не адсочваць"],"Monitor new posts":[null,"Адсочванне новых запісаў"],"Category URLs":[null,"URL катэгорыі"],"Update":[null,"Абнавіць"],"Import":[null,"Імпарт"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Вы можаце імпартаваць правілы перанакіраванняў з існых .htaccess, CSV ці XML файлаў"],"Import into":[null,"Імпартаваць у"],"Upload":[null,"Загрузіць"],"Note that the group is ignored when uploading an XML file.":[null,"Нататка: група будзе праігнаравана пры загрузцы XML-файла."],"Delete Redirection":[null,"Выдаліць убудову"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Выбар дадзенай опцыі выдаліць усе наладжаныя перанакіраванні, усе часопісы і ўсе іншыя налады, злучаныя з дадзенай убудовай. Пераканаецеся, што гэта менавіта тое, чаго вы жадаеце."],"Tracked":[null,"Сачэнне"],"Whether to track 'hits' to items":[null,"Адсочваць кол-у спрацоўванняў"],"Enabled":[null,"Уключана"],"Disabling a group will disable all items contained within it":[null,"Адключэнне групы прывядзе да адключэння ўсіх пунктаў, якія змяшчаюцца ў ёй"],"Log 404s":[null,"Журналяванне 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Адключана: Перад выкарыстаннем павінны быць уключаны <a href=\"options-permalink.php\">ЧПУ</a>"],"<small>No options have been set</small>":[null,"<small>Няма наладжвальных параметраў</small>"],"Location":[null,"Размяшчэнне"],"WordPress is installed in: <code>%s</code>":[null,"WordPress усталяваны ў: <code>%s</code>"],"Canonical":[null,"Аснова"],"Leave as is":[null,"Пакінуць як ёсць"],"Strip WWW (%s)":[null,"Выразаць WWW (%s)"],"Force WWW (www.%s)":[null,"Прымусова выкарыстоўваць WWW (www.%s)"],"Strip Index":[null,"Выдаленне індэксу"],"Strip index files (html,php)":[null,"Выдаліць файлы index (html,php) "],"Memory Limit":[null,"Ліміт памяці"],"Server default":[null,"Налады сервера"],"Error Level":[null,"Узровень памылак"],"No errors":[null,"Без памылак"],"Show errors":[null,"Паказваць памылкі"],"Ban IPs":[null,"Блакаваць IP"],"Allow IPs":[null,"Дазволіць IP"],"Raw .htaccess":[null,"Неапрацаваны .htaccess"],"Site URL":[null,"URL сайта"],"Advanced: For management of external sites":[null,"Дадаткова: для кіравання вонкавымі сайтамі"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Няправільнае размяшчэнне - праверце што шлях існуе</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Немагчыма запісаць файл <code>.htaccess</code> - праверце правы доступу</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Адключана: пакажыце становішча файла <code>.htaccess</code> ці прывядзіце яго ў працоўны стан</strong>"],"strip WWW":[null,"выразаць WWW"],"force WWW":[null,"прымусова выкарыстоўваць WWW"],"strip index":[null,"выдаліць index"],"memory limit at %dMB":[null,"ліміт памяці %dMB"],"no errors":[null,"няма памылак"],"show errors":[null,"паказаць памылкі"],"IPs are banned":[null,"Забароненыя IP"],"IPs are allowed":[null,"Дазволеныя IP"],"Redirect to URL":[null,"Перанакіраваць на URL"],"Redirect to random post":[null,"Перанакіраваць на выпадковы запіс"],"Pass-through":[null,"Транзіт (pass-through)"],"Error (404)":[null,"Памылка 404"],"Do nothing":[null,"Нічога не рабіць"],"WordPress":[null,"WordPress"],"404 Errors":[null,"Памылкі 404"],"Strip WWW":[null,"Выразаць WWW"],"Force WWW":[null,"Прымусова выкарыстоўваць WWW"],"Strip index.php":[null,"Выдаліць index.php"],"Redirections":[null,"Перанакіраванні"],"Modified Posts":[null,"Змененыя запісы"],"Previous":[null,"Папярэдні"],"Next":[null,"Наступны"],"%d per-page":[null,"%d на старонку"],"Displaying %s&#8211;%s of %s":[null,"Паказана %s&#8211;%s з %s"],"Yes":[null,"Так"],"No":[null,"Не"],"Sorry, but your redirection was not created":[null,"Выбачыце, перанакіраванне не было створана"],"Settings":[null,"Налады"],"Please wait...":[null,"Калі ласка пачакайце..."],"Redirection":[null,"Перанакіраванні"],"Your module was successfully created":[null,"Модуль паспяхова створаны"],"Your module was not created - did you provide a name?":[null,"Модуль не быў створаны - не паказалі імя?"],"Your options were updated":[null,"Вашы налады былі абноўлены"],"Redirection data has been deleted and the plugin disabled":[null,"Усе налады перанакіраванняў былі выдалены, а ўбудова адключаны"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d перанакіраванне было паспяхова імпартавана","%d перанакіраванні былі паспяхова імпартаваны"],"No items were imported":[null,"Нічога не імпартавана"],"Your logs have been deleted":[null,"Вашы часопісы былі выдалены"],"Your group was added successfully":[null,"Ваша група паспяхова дададзена"],"Please specify a group name":[null,"Калі ласка, вызначыце імя групы"],"Redirection is available in":[null,"Перанакіраванні даступныя ў"],"URL only":[null,"Толькі URL"],"HTTP Code":[null,"Код HTTP"],"URL and login status":[null,"URL і статут уваходу"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Будзе абраны адзін з наступных URL-адрасоў у залежнасці ад таго, увойдзе карыстач у сістэму ці няма. Калі пакінуць поле пустым - карыстач перанакіроўвацца не будзе."],"Logged In":[null,"Залогинен"],"Logged Out":[null,"Разлогинен"],"URL and user agent":[null,"URL і User-Agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Наведвальнік будзе перанакіраваны пры супадзенні User-Agent. Вы можаце вызначыць розныя мэтавыя URL пры супадзенні ці не супадзенні. Калі пакінуць поле пустым, то наведвальнік нікуды перанакіроўвацца не будзе. <strong>Усе ўмовы ўводзяцца як рэгулярныя выразы</strong>.\n"],"Matched":[null,"Супадаюць"],"Not matched":[null,"Не супадаюць"],"URL and referrer":[null,"URL і реферер"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Наведвальнік будзе перенапрвлен на URL крыніцы пры супадзенні реферера. Вы можаце вызначыць розныя мэтавыя URL пры супадзенні і не супадзенні. Калі пакінуць поле пустым, наведвальнік нікуды перанакіроўвацца не будзе."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Manage all your 301 redirects and monitor 404 errors":[null,"Кіруйце ўсімі 301-перанакіраваннямі і адсочвайце памылкі 404"],"John Godley":[null,"Джон Годли"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"]}
 
locale/json/redirection-ca.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2017-07-06 21:35:14+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"ca","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Ajustos avançats"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,""],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Redirection Support":[null,"Suport Tècnic de Redirecció"],"Support":[null,"Suport"],"404s":[null,"404s"],"404s from %s":[null,"404s des de %s"],"Log":[null,"Registres"],"Delete Redirection":[null,"Eliminar Redirecció"],"Upload":[null,"Pujar"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Importar"],"Update":[null,"Actualitzar"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Autogenerar URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"Token de RSS"],"Don't monitor":[null,"No fer el seguiment"],"Monitor changes to posts":[null,""],"404 Logs":[null,"Registres 404"],"(time to keep logs for)":[null,"(temps que es mantindran els registres)"],"Redirect Logs":[null,"Registres de redireccions"],"I'm a nice person and I have helped support the author of this plugin":[null,"Soc una bona persona i he ajudat a l'autor d'aquesta extensió"],"Plugin support":[null,""],"Options":[null,"Opcions"],"Two months":[null,"Dos mesos"],"A month":[null,"Un mes"],"A week":[null,"Uns setmana"],"A day":[null,"Un dia"],"No logs":[null,"Sense registres"],"Modules":[null,"Mòduls"],"Export to CSV":[null,""],"Delete All":[null,""],"Redirection Log":[null,"Registre de redireccions"],"optional":[null,"opcional"],"Description":[null,"Descripció"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,""],"Add Group":[null,"Afegir grup"],"Search":[null,"Cercar"],"Groups":[null,"Grups"],"Save":[null,"Desar"],"Add Redirection":[null,"Afegir Redirecció"],"Group":[null,"Grup"],"Regular expression":[null,"Expresió regular"],"Action":[null,"Acció"],"Match":[null,"Coincidència"],"Your redirection has been added.":[null,"S'ha afegit la vostra redirecció"],"Add new redirection":[null,"Afegir una nova redirecció"],"Cancel":[null,"Cancel·lar"],"Download":[null,""],"Sorry, but your redirection was not created":[null,"Ho sento, però la vostra redirecció no ha estat creada"],"Unable to perform action":[null,"No s'ha pogut realitzar l'acció"],"No items were imported":[null,"No s'han importat elements"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirecció importada correctament","%d redireccions importades correctament"],"Your options were updated":[null,"Les vostres opcions han estat actualitzades"],"Redirection":[null,"Redirecció"],"Settings":[null,"Configuració"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,""],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,""],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,""],"Default server":[null,""],"Canonical URL":[null,"URL canònica"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,""],"Do nothing":[null,"No fer res"],"Error (404)":[null,"Error (404)"],"Pass-through":[null,"Pasar directe"],"Redirect to random post":[null,"Redirigir a entrada aleatoria"],"Redirect to URL":[null,"Redirigir a URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,""],"Invalid source URL when creating redirect for given match type":[null,""],"Invalid group when creating redirect":[null,""],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,""],"Source and target URL must be different":[null,""],"Configure":[null,""],"Show only this IP":[null,"Mostra només aquesta IP"],"IP":[null,"IP"],"Source URL":[null,"URL origen"],"Date":[null,"Data"],"Add Redirect":[null,"Afegeix redirecció"],"All modules":[null,"Tots els mòduls"],"View Redirects":[null,""],"Module":[null,"Mòdul"],"Redirects":[null,"Redireccions"],"Name":[null,"Nom"],"Filter":[null,"Filtre"],"No group filter":[null,"Sense filtre de grup"],"Reset Hits":[null,"Reiniciar Hits"],"Enable":[null,""],"Disable":[null,"Desactiva"],"Delete":[null,"Eliminar"],"Edit":[null,"Edita"],"Last Access":[null,"Últim accés"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Tipus"],"Modified Posts":[null,"Entrades modificades"],"Redirections":[null,"Redireccions"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"El visitant serà redireccionat de l'URL origen si l'agente d'usuario conincideix. Podeu especificar una URL diferent si <em>coincideix</em> com la direcció a on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que no ho fagi. Si deixceu la URL buida el visitant no serà redireccionat.\n"],"User Agent":[null,"Agent d'usuari"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL i agent d'usuari"],"Target URL":[null,"URL destí"],"URL only":[null,"Solament URL"],"Not matched":[null,"No coincideix"],"Matched":[null,"Coincideix"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"El visitant serà redireccionat de la URL origen si el referent coincideix. Podeu especificar una URL destí si <em>coincideix</em> com la direcció on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que ho fagi. Si deixeu la URL buida el visitant no serà redireccionat."],"HTTP Code":[null,"Codi HTTP"],"Regex":[null,"Expresió regular"],"Referrer":[null,"Referent"],"URL and referrer":[null,"URL i referent"],"Logged Out":[null,"Desconnectat"],"Logged In":[null,"Identificat"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"La URL destí serà triada entre les següents URL, depenent si l'usuari es troba validat o no. Si deixeu la URL buida l'usuari no serà redireccionat."],"URL and login status":[null,"Estat de l'URL i connexió"]}
 
locale/json/redirection-cs_CZ.json DELETED
@@ -1 +0,0 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection 2.2.5","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2011-07-17 10:14:58+00:00","po-revision-date":"2011-08-18 13:24+0100","last-translator":"Martin Jurica <martin@jurica.info>","language-team":"Martin Jurica <martin@jurica.info>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-poedit-sourcecharset":"utf-8","x-poedit-keywordslist":"__;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2","x-poedit-basepath":".","x-textdomain-support":"yes","x-poedit-searchpath-0":"."},"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importován z %s na %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"XML import je k dispozici pouze v PHP5 - používáte bohužel PHP4."],"Groups for module":[null,"Skupiny modulu"],"Module":[null,"Modul"],"Search":[null,"Hledat"],"go":[null,"go"],"Hits":[null,"Zobrazení"],"Name":[null,"Jméno"],"Select All":[null,"Vybrat vše"],"Toggle":[null,"Povolit/Zakázat"],"Reset Hits":[null,"Vynulovat počet zobrazení"],"Delete":[null,"Odstranit"],"Move To":[null,"Přesunout do"],"Go":[null,"Go"],"re-order":[null,"přeuspořádat"],"save order":[null,"uložit pořadí"],"You have no groups in this module.":[null,"Tento modul neobsahuje žádné skupiny."],"Add Group":[null,"Přidat skupinu"],"Add":[null,"Přidat"],"No items have been selected":[null,"Nebyly vybrány žádné položky"],"Are you sure?":[null,"Opravdu?"],"Redirects":[null,"Přesměrování"],"Groups":[null,"Skupiny"],"Modules":[null,"Moduly"],"Log":[null,"Log"],"Options":[null,"Nastavení"],"Support":[null,"Podpora"],"View as":[null,"Zobrazit jako"],"CSV":[null,"CSV"],"XML":[null,"XML"],"Apache":[null,"Apache"],"RSS":[null,"RSS"],"edit":[null,"upravit"],"delete":[null,"odstranit"],"reset":[null,"reset"],"Redirection Log":[null,"Logy přesměrování"],"Bulk Actions":[null,"Hromadné akce"],"Apply":[null,"Použít"],"Group":[null,"Skupina"],"Filter":[null,"Filtr"],"Date":[null,"Datum"],"Source URL":[null,"Zdrojová URL"],"Referrer":[null,"Referrer"],"IP":[null,"IP"],"There are no logs to display!":[null,"Není k dispozici žádný log pro zobrazení!"],"Process Current Logs":[null,"Operace s aktuálními logy"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Tyto akce budou mít vliv na všechny logy, které jsou k dispozici (pomocí vyhledávání můžete omezit rozsah zpracovaných logů)."],"Delete Logs":[null,"Smazat logy"],"Redirections for group":[null,"Přesměrování pro skupinu"],"Last Access":[null,"Poslední přístup"],"Type":[null,"Typ"],"URL":[null,"URL"],"Position":[null,"Pozice"],"You have no redirections.":[null,"Neexistuje žádné přesměrování."],"Redirect to":[null,"Přesměrovat na"],"Redirected by":[null,"Přesměrováno dle"],"for":[null,"pro"],"User Agent":[null,"User Agent"],"disabled":[null,"zakázáno"],"%s by matching %s":[null,"%s odpovídá %s"],"Title":[null,"Nadpis"],"optional":[null,"volitelný"],"Regex":[null,"Regex"],"Save":[null,"Uložit"],"Cancel":[null,"Zrušit"],"Add new redirection":[null,"Přidat nové přesměrování"],"Your redirection has been added.":[null,"Přesměrování bylo přidáno."],"Match":[null,"Shoda"],"Action":[null,"Akce"],"Regular expression":[null,"Regulární výraz"],"Target URL":[null,"Cílová URL"],"Add Redirection":[null,"Přidat přesměrování"],"edit group":[null,"upravit skupinu"],"Details":[null,"Podrobnosti"],"Items":[null,"Položky"],"Operations":[null,"Operace"],"Note: Hits are dependant on log entries":[null,"Poznámka: Počet zobrazení je vypočítán ze záznamů v logu"],"You have no modules defined yet":[null,"Žádné moduly nebyly dosud definovány"],"Add Module":[null,"Přidat modul"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Modul je kontrolní prvek, který určuje, jakým způsobem jsou zpracovávány přesměrování. Záznamy v modulu WordPress jsou zpracovány WordPressem, záznamy v modulu Apache zpracovává <code>.htaccess</code>, a záznamy v modulu 404 ovlivní, jak budou zalogovány chyby 404."],"Create":[null,"Vytvořit"],"Redirection Support":[null,"Podpora pro Redirection"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Plugin Redirection je šířen zdarma - život je krásný, autor vás má rád! Nicméně, vývoj vyžaduje hodně času a úsilí... Pokud vám tento plugin připadá užitečný, neostýchejte se podpořit jeho vývoj <strong>drobným příspěvkem.</strong>"],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Drobnou dotací nejen přispějete na další vývoj, ale dáte mi také najevo, že tento plugin má smysl a mám pokračovat v jeho vývoji, podpoře vás, uživatelů, a v přidávání dalších skvělých funkcí. Vy tak získáte užitečný software a já povzbuzení do další práce. A to za to stojí, nemyslíte?"],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Používáte-li tento plugin ve firemní sféře, nebo máte pocit, že je extrémně užitečný, pak byste možná mohli zvážit <strong>výraznější dotaci za komerční využití.</strong>"],"Individual<br/>Donation":[null,"Individuální<br/>příspěvek"],"Commercial<br/>Donation":[null,"Komerční<br/>příspěvek"],"Translations":[null,"Překlady"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Pokud hovoříte více jazyky, můžete podpořit další vývoj pluginu jeho přeložením například do těchto jazyků:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Všichni překladatelé získají odkaz na své webové stránky na domovské stránce pluginu <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>. A pochopitelně dobrý pocit z přispění komunitě."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Kompletní postup pro překládání je k dispozici v podobě <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">příručky pro překlad WordPress pluginů</a> ."],"Auto-generate URL":[null,"Automatické generování URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Tato volba je použita pro automatické generování URL v případě, kdy není URL specifikována. Je možné použít speciální tagy $dec$ nebo $hex$ pro vložení unikátního ID do URL (dec - dekadický, hex - šestnáctkový)"],"IP Lookup Service":[null,"Služba pro vyhledávání dle IP"],"Plugin Support":[null,"Podpora pluginu"],"I'm a nice person and I have helped support the author of this plugin":[null,"Jsem milý člověk a podpořil jsem vývoj tohoto pluginu"],"Logging":[null,"Logování"],"log redirected requests":[null,"logovat žádosti o přesměrování"],"log 404 Not Found requests":[null,"logovat požadavky 404 - Nenalezeno"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Zakázáním jedné nebo obou těchto voleb docílíte nižšího zatížení databáze a vyššího výkonu webu. To se hodí zejména u webů, které mají omezené systémové zdroje, velký počet přesměrování a chybných URL či v případech, kdy nepotřebujete záznamy o proběhlých přesměrováních."],"Expire Logs":[null,"Expirace logů"],"days (enter 0 for no expiry)":[null,"dnů (při zadání 0 neexpirují logy nikdy)"],"RSS Token":[null,"RSS Token"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Unikátní token umožňující přístup RSS čtečkám k Redirection RSS (ponechte prázdné pro automatické generování)"],"URL Monitoring":[null,"URL Monitoring"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Plugin Redirection může detekovat změny v URL a na jejich základě vytvářet automatická přesměrování pro konkrétní skupiny."],"Post &amp; Page URLs":[null,"URL Příspěvků &amp; Stránek"],"Don't monitor":[null,"Nesledovat"],"Monitor new posts":[null,"Sledovat nové příspěvky"],"Category URLs":[null,"URL kategorií"],"Update":[null,"Aktualizovat"],"Import":[null,"Import"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Složí k importu přesměrování z existujícího souboru .htaccess, CSV souboru nebo z XML exportu pluginu Redirection."],"Import into":[null,"Importovat do"],"Upload":[null,"Nahrát"],"Note that the group is ignored when uploading an XML file.":[null,"Poznámka: Nastavení Skupiny je při nahrání XML souboru ignorováno."],"Delete Redirection":[null,"Odstranit plugin Redirection"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Výběrem této možnosti dojde k odstranění všech přesměrování, logů a všech nastavení, spojených s pluginem Redirection. Tyto změny není možné vzít zpět, ujistěte se, že víte, co děláte."],"Tracked":[null,"Sledování"],"Whether to track 'hits' to items":[null,"Sledovat 'hits' (použití) položek"],"Enabled":[null,"Povoleno"],"Disabling a group will disable all items contained within it":[null,"Zakázání skupiny současně zakáže všechny její položky"],"Log 404s":[null,"Logovat chyby 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Plugin neaktivní: nejprve musíte povolit <a href=\\\"options-permalink.php\\\">trvalé odkazy</a></strong>"],"<small>No options have been set</small>":[null,"<small>Nic nebylo nastaveno</small>"],"Location":[null,"Umístění"],"WordPress is installed in: <code>%s</code>":[null,"WordPress je nainstalován v: <code>%s</code>"],"Canonical":[null,"Kanonizace"],"Leave as is":[null,"Beze změny"],"Strip WWW (%s)":[null,"Odebrat WWW (%s)"],"Force WWW (www.%s)":[null,"Vždy přidat WWW (www.%s)"],"Strip Index":[null,"Odebrat Index"],"Strip index files (html,php)":[null,"Odebrat soubory index (html,php)"],"Memory Limit":[null,"Memory Limit"],"Server default":[null,"Server default"],"Error Level":[null,"Error Level"],"No errors":[null,"No errors"],"Show errors":[null,"Show errors"],"Ban IPs":[null,"Zakázané IP"],"Allow IPs":[null,"Povolené IP"],"Raw .htaccess":[null,"Raw .htaccess"],"Site URL":[null,"URL webu"],"Advanced: For management of external sites":[null,"Pokročilé: Pro správu externích webů"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Umístění je chybné - zkontrolujte zadanou cestu</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Nelze zapisovat do <code>.htaccess</code> souboru - zkontrolujte přístupová oprávnění</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Zakázáno: Je potřeba zadat správné umístění souboru <code>.htaccess</code></strong>"],"strip WWW":[null,"odstranit WWW"],"force WWW":[null,"vždy použít WWW"],"strip index":[null,"odstranit index"],"memory limit at %dMB":[null,"memory limit - %dMB"],"no errors":[null,"nezobrazovat chyby"],"show errors":[null,"zobrazovat chyby"],"IPs are banned":[null,"IP adresy jsou zakázány"],"IPs are allowed":[null,"IP adresy jsou povoleny"],"Redirect to URL":[null,"Přesměrovat na URL"],"Redirect to random post":[null,"Přesměrovat na náhodný příspěvek"],"Pass-through":[null,"Pass-through"],"Error (404)":[null,"Chyba (404)"],"Do nothing":[null,"Nedělat nic"],"WordPress":[null,"WordPress"],"404 Errors":[null,"chyby 404"],"Strip WWW":[null,"Odebrat WWW"],"Force WWW":[null,"Vždy použít WWW"],"Strip index.php":[null,"Odebrat index.php"],"Redirections":[null,"Redirections"],"Modified Posts":[null,"Upravené příspěvky"],"Previous":[null,"Předchozí"],"Next":[null,"Další"],"%d per-page":[null,"%d na stránku"],"Displaying %s&#8211;%s of %s":[null,"Zobrazuje se %s&#8211;%s z %s"],"Yes":[null,"Ano"],"No":[null,"Ne"],"Sorry, but your redirection was not created":[null,"Přesměrování nebylo vytvořeno"],"Settings":[null,"Nastavení"],"Please wait...":[null,"Čekejte prosím ..."],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Modul byl úspěšně vytvořen"],"Your module was not created - did you provide a name?":[null,"Modul nebyl vytvořen - nezapomněli jste zadat název?"],"Your options were updated":[null,"Nastavení aktualizováno"],"Redirection data has been deleted and the plugin disabled":[null,"Data pluginu Redirection byla odstraněna a plugin byl deaktivován"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d přesměrování bylo úspěšně importováno","%d přesměrování byla úspěšně importována","%d přesměrování bylo úspěšně importováno"],"No items were imported":[null,"Žádné položky nebyly importovány"],"Your logs have been deleted":[null,"Vaše logy byly smazány"],"Your group was added successfully":[null,"Skupina byla úspěšně přidána"],"Please specify a group name":[null,"Zadejte prosím název skupiny"],"Redirection is available in":[null,"Redirection je k dispozici v"],"URL only":[null,"pouze URL"],"HTTP Code":[null,"HTTP kód"],"URL and login status":[null,"URL a přihlášení"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Cílová URL bude vybírána z následujících URL - v závislosti na tom, zda je uživatel přihlášen nebo ne. Prázdné pole pro URL znamená, že k přesměrování nedojde"],"Logged In":[null,"Přihlášený"],"Logged Out":[null,"Odhlášený"],"URL and user agent":[null,"URL a user agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Návštěvník bude přesměrován ze zdrojové URL, pokud odpovídá jeho identifikace User Agent. Lze nastavit cílové URL pro <em>shodu</em> parametru User Agent a další URL pro ostatní případy - <em>neshoduje se</em>. Ponechání prázdné URL znamená, že návštěvník nebude přesměrován. <strong>Poznámka: ve všech případech je použit regulární výraz - verze a revize nejsou brány v potaz.</strong>\n"],"Matched":[null,"Shoda"],"Not matched":[null,"Neshoduje se"],"URL and referrer":[null,"URL a referrer"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Návštěvník bude přesměrován ze zdrojové URL, pokud přichází z konkrétní URL (referrer). Lze nastavit cílové URL pro <em>shodu</em> parametru referrer a další URL pro ostatní případy - <em>neshoduje se</em>. Ponechání prázdné URL znamená, že návštěvník nebude přesměrován."]}
 
locale/json/redirection-da.json DELETED
@@ -1 +0,0 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection","report-msgid-bugs-to":"","pot-creation-date":"2012-04-22 17:38+0100","po-revision-date":"2012-05-01 20:58+0100","last-translator":"Rasmus Himmelstrup <rh@iihnordic.com>","language-team":"","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-keywordslist":"__;gettext;gettext_noop;_e","x-poedit-basepath":".","x-poedit-language":"Danish","x-poedit-country":"Denmark","x-poedit-searchpath-0":"."},"Sorry, but your redirection was not created":[null,"Beklager, men dit redirect blev ikke oprettet"],"Settings":[null,"Indstillinger"],"Please wait...":[null,"Vent venligst.."],"Are you sure?":[null,"Er du sikker?"],"No items have been selected":[null,"Ingen elementer blev valgt"],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Dit modul blev oprettet succesfuldt"],"Your module was not created - did you provide a name?":[null,"Dit modul blev ikke oprettet - tilføjede du et navn?"],"Your options were updated":[null,"Dine indstillinger blev opdateret"],"Redirection data has been deleted and the plugin disabled":[null,"Redirection data blev slettet og plugin'et deaktiveret"],"No items were imported":[null,"Ingen redirects blev importeret"],"Your logs have been deleted":[null,"Dine logs blev slettet"],"Your group was added successfully":[null,"Din gruppe blev tilføjet succesfuldt"],"Please specify a group name":[null,"Tilføj venligst et gruppenavn"],"Redirection is available in":[null,"Redirection er tilgængelig i"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importeret i %s af %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"XML importering er kun tilgængeligt i PHP5 - du har PHP4."],"URL and login status":[null,"URL og login status"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Target URL vil blive valgt fra en af de følgende URLs, afhængig af om brugeen er logget ind eller ej. Hvis du lader en URL være blank betyder det, at brugeren ikke er redirected."],"Logged In":[null,"Logget Ind"],"Logged Out":[null,"Logget Ud"],"URL and referrer":[null,"URL og henvisning"],"Referrer":[null,"Henvisning"],"Regex":[null,"Regex"],"HTTP Code":[null,"HTTP Kode"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Brugeren vil blive redirected fra kilde URL hvis henvisningen matcher. Du kan specificere en <em>matchende</em> target URL som den adresse hvor brugerne sendes hen, hvis de matcher og en <em>ikke matchende</em> hvis de ikke matcher. Lader du en URL være blank betyder det, at brugeren ikke redirectes."],"Matched":[null,"Matcher"],"Not matched":[null,"Matcher ikke"],"URL only":[null,"Kun URL"],"Target URL":[null,"Target URL"],"URL and user agent":[null,"URL og user agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"Firefox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"iPad":[null,"iPad"],"Android":[null,"Android"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"User Agent"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Brugeren vil blive redirected fra kilde URL hvis user agent matcher. Du kan specificere en <em>matchende</em> target URL som den adresse hvor brugerne sendes hen, hvis de matcher og <em>ikke matchende</em> hvis de ikke matcher. Hvis URL efterlades blank betyder det, at brugeren ikke redirectes. <strong>Alle matches foretages som regulære udtryk</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"Redirections":[null,"Redirections"],"Modified Posts":[null,"Ændrede poster"],"Yes":[null,"Ja"],"No":[null,"Nej"],"404 Errors":[null,"404 Fejl"],"Strip WWW":[null,"Fjern WWW"],"Force WWW":[null,"Forcér WWW"],"Strip index.php":[null,"Fjern index.php"],"Previous":[null,"Forrige"],"Next":[null,"Næste"],"%d per-page":[null,"% per-side"],"Displaying %s&#8211;%s of %s":[null,"Viser %s&#8211;%s af %s"],"Redirect to URL":[null,"Redirect til URL"],"Redirect to random post":[null,"Redirect til tilfældigt indlæg"],"Pass-through":[null,"Pass-through"],"Error (404)":[null,"Fejl (404)"],"Do nothing":[null,"Gør ingenting"],"Log 404s":[null,"Log 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Deaktiveret: Du skal aktivere <a href=\"options-permalink.php\">permalinks</a> før du kan bruge det</strong>"],"<small>No options have been set</small>":[null,"<small>Ingen indstillinger blev ændret</small>"],"Location":[null,"Lokation"],"WordPress is installed in: <code>%s</code>":[null,"WordPress er installeret i: <code>%s</code>"],"Canonical":[null,"Canonical"],"Leave as is":[null,"Ingen ændriger"],"Strip WWW (%s)":[null,"Fjern WWW (%s)"],"Force WWW (www.%s)":[null,"Forcér WWW (www.%s)"],"Strip Index":[null,"Fjern Index"],"Strip index files (html,php)":[null,"Fjern index filer (html,php)"],"Memory Limit":[null,"Hukommelsesbegrænsning"],"Server default":[null,"Server default"],"Error Level":[null,"Fejl Level"],"No errors":[null,"Ingen fejl"],"Show errors":[null,"Vis fejl"],"Ban IPs":[null,"Ekskludér IPs"],"Allow IPs":[null,"Tillad IPs"],"Raw .htaccess":[null,"Rå .htaccess"],"Site URL":[null,"Site URL"],"Advanced: For management of external sites":[null,"Avanceret: For håndtering af eksterne sites"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Lokationen er ugyldig - check at stien eksisterer</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Kunne ikke skrive til konfigurerede <code>.htaccess</code> fil - check fil tilladelser</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Deaktiveret: indtast lokationen af <code>.htaccess</code> filen for at gøre dette validt</strong>"],"strip WWW":[null,"fjern WWW"],"force WWW":[null,"forcér WWW"],"strip index":[null,"fjern index"],"memory limit at %dMB":[null,"Hukommelsesbegræsning på %dMB"],"no errors":[null,"ingen fejl"],"show errors":[null,"vis fejl"],"IPs are banned":[null,"IPs er ekskluderet"],"IPs are allowed":[null,"IPs er tilladte"],"Add new redirection":[null,"Tilføj ny redirection."],"Your redirection has been added.":[null,"Dit redirect er tilføjet."],"Source URL":[null,"Kilde URL"],"Match":[null,"Match"],"Action":[null,"Action"],"Regular expression":[null,"Regulært udtryk"],"Group":[null,"Gruppe"],"Add Redirection":[null,"Tilføj redirect"],"Name":[null,"Navn"],"Tracked":[null,"Tracked"],"Whether to track 'hits' to items":[null,"Antal 'hits' til hver redirect "],"Enabled":[null,"Aktiveret"],"Disabling a group will disable all items contained within it":[null,"Deaktivering af en gruppe vil deaktivere all objekter indeholdt i gruppen"],"Save":[null,"Gem"],"Cancel":[null,"Annullér"],"edit group":[null,"redigér gruppe"],"disabled":[null,"deaktiveret"],"Groups for module":[null,"Grupper for moduler"],"Module":[null,"Modul"],"Search":[null,"Søg"],"go":[null,"send"],"Hits":[null,"Hits"],"Select All":[null,"Vælg Alle"],"Toggle":[null,"Skift"],"Reset Hits":[null,"Nulstil Hits"],"Delete":[null,"Slet"],"Move To":[null,"Flyt til"],"Go":[null,"Send"],"re-order":[null,"Sorter"],"save order":[null,"gem opstilling"],"You have no groups in this module.":[null,"Du har ingen grupper i modulet"],"Add Group":[null,"Tilføj gruppe"],"Add":[null,"Tilføj"],"%s by matching %s":[null,"%s ved at matche %s"],"Title":[null,"Titel"],"optional":[null,"valgfri"],"Redirections for group":[null,"Redirections for gruppe"],"Last Access":[null,"Sidste adgang"],"Type":[null,"Type"],"URL":[null,"URL"],"Position":[null,"Position"],"You have no redirections.":[null,"Du har ingen redirects"],"Redirection Log":[null,"Redirection Log"],"Bulk Actions":[null,"Flere handlinger"],"Apply":[null,"Tilføj"],"Filter":[null,"Filter"],"Date":[null,"Dato"],"IP":[null,"IP"],"There are no logs to display!":[null,"Der er ingen logs at vise"],"Process Current Logs":[null,"Proces for nuværende logs"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Tilføjelserne vil påvirke alle nuværende tilgængelige logs (dvs. din søgeforespørgsel vil filtrere de forskellige logs)"],"Delete Logs":[null,"Fjern logs"],"Redirect to":[null,"Redirect til"],"Redirected by":[null,"Redirected af"],"for":[null,"For"],"View as":[null,"Vis som"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"redigér"],"delete":[null,"slet"],"reset":[null,"nulstil"],"Modules":[null,"Moduler"],"Details":[null,"Detaljer"],"Groups":[null,"Grupper"],"Items":[null,"Objekter"],"Operations":[null,"Operationer"],"Note: Hits are dependant on log entries":[null,"Bemærk: Hits er afhængig af log tilføjelser"],"You have no modules defined yet":[null,"Du har ikke defineret nogle moduler endnu"],"Add Module":[null,"Tilføj Modul"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Et modul er et element, der kontrollerer hvordan redirects håndteres. Elementer i et WordPress modul er håndteret af WordPress, elementer i et Apache modul er håndteret i <code>.htaccess</code>, og elementer i et 404 modul påvirker hvordan 404 fejl er gemt."],"Create":[null,"Tilføj"],"Options":[null,"Indstillinger"],"Auto-generate URL":[null,"Auto-generér URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Dette vil blive brugt til at auto-generere en URL hvis ingen URL er givet. Du kan bruge specielle tags $dec$ eller $hex$ for at indsætte en unik ID (enten decimal eller hex)"],"IP Lookup Service":[null,"IP Lookup Service"],"Plugin Support":[null,"Plugin Support"],"I'm a nice person and I have helped support the author of this plugin":[null,"Jeg er en flink person og jeg har hjulpet vedkommende, der har udarbejdet dette plugin."],"Logging":[null,"Logging"],"log redirected requests":[null,"log redirectede forespørgelser"],"log 404 Not Found requests":[null,"log 404 ikke fundet forespørgelser"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Fravælg en eller begge af disse for at fjerne logging og reducér database load hvis dine redirectede URLs bliver forespurgt på hyppigt, og/eller hvis dit website er meget besøgt eller siderne ofte ikke kan findes."],"Expire Logs":[null,"Logs udløber efter"],"days (enter 0 for no expiry)":[null,"dage (indtast 0 for ingen udløbsdato)"],"RSS Token":[null,"RSS Token"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"En unik token der tillader feed readers adgang til Redirection RSS (undgå at udfylde for at auto-generere)"],"URL Monitoring":[null,"URL Monitorering"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Du kan sætte Redirection til at opdage ændringer i URLs automatisk og opsætte automatiske redirections i en specifik gruppe."],"Post &amp; Page URLs":[null,"Indlæg og Side URLs"],"Don't monitor":[null,"Monitorér ikke"],"Monitor new posts":[null,"Monitorér nye indlæg"],"Category URLs":[null,"Kategori URLs"],"Update":[null,"Opdatér"],"Import":[null,"Importér"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Her kan du importere redirections fra en eksisterende .htaccess fil, en csv fil, eller en Redirection XML."],"Import into":[null,"Importér i"],"Upload":[null,"Upload"],"Note that the group is ignored when uploading an XML file.":[null,"Bemærk at gruppen er ignoreret når du uploader en XML fil."],"Delete Redirection":[null,"Fjern Rediretion."],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Ved at vælge denne mulighed sletter du alle redirections, alle logs, og alle indstillinger associeret med plugin'et Redirection. Vær helt sikker på at det er det, du vil."],"Redirects":[null,"Redirects"],"Log":[null,"Log"],"Support":[null,"Support"],"Redirection Support":[null,"Redirection Support"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Redirection er gratis at bruge - livet er fantastisk og perfekt. Men Redirection har taget lang tid at udvikle, så hvis du finder det brugbart, kan du hjælpe med at supportere udviklingen yderligere ved at <strong>donere et lille beløb</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Dette vil være et incitament for mig til at forsætte med at programmere, udvikle yderligere tiltag og bruge uendeligt mange timer på support. Du får brugbar software og jeg får muligheden for at blive ved med at udvikle det. Alle vinder."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Hvis du benytter dette plugin i kommercielt øjemed eller føler at plugin'et er særdeles brugbart, vil jeg bede dig om at overveje en <strong>kommerciel donation</strong>."],"Individual<br/>Donation":[null,"Individuel donation"],"Commercial<br/>Donation":[null,"Kommerciel<br/>Donation"],"Translations":[null,"Oversættelser"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Hvis du er flersproget vil du måske overveje at donere en oversættelse:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"All oversættere vil få et link til deres website placeret på hjemmesiden for plugin'et på <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, udover at være en individuel supporter."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Alle detaljer for at oversætte et plugin kan findes i denne <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide til at oversætte WordPress Plugins</a>."]}
 
locale/json/redirection-da_DK.json DELETED
@@ -1 +0,0 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection","report-msgid-bugs-to":"","pot-creation-date":"2012-04-22 17:38+0100","po-revision-date":"2013-12-05 08:40+0100","last-translator":"Mikael <mikael@husplushave.dk>","language-team":"Antphilosophy.com","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-keywordslist":"__;gettext;gettext_noop;_e","x-poedit-basepath":".","language":"da_DK","x-generator":"Poedit 1.5.7","plural-forms":"nplurals=2; plural=n != 1;","x-poedit-sourcecharset":"UTF-8","x-poedit-searchpath-0":"."},"Sorry, but your redirection was not created":[null,"Beklager, men dit redirect blev ikke oprettet"],"Settings":[null,"Indstillinger"],"Please wait...":[null,"Vent venligst.."],"Are you sure?":[null,"Er du sikker?"],"No items have been selected":[null,"Ingen elementer blev valgt"],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Dit modul blev oprettet succesfuldt"],"Your module was not created - did you provide a name?":[null,"Dit modul blev ikke oprettet - tilføjede du et navn?"],"Your options were updated":[null,"Dine indstillinger blev opdateret"],"Redirection data has been deleted and the plugin disabled":[null,"Redirection data blev slettet og plugin'et deaktiveret"],"No items were imported":[null,"Ingen redirects blev importeret"],"Your logs have been deleted":[null,"Dine logs blev slettet"],"Your group was added successfully":[null,"Din gruppe blev tilføjet succesfuldt"],"Please specify a group name":[null,"Tilføj venligst et gruppenavn"],"Redirection is available in":[null,"Redirection er tilgængelig i"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importeret i %s af %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"XML importering er kun tilgængeligt i PHP5 - du har PHP4."],"URL and login status":[null,"URL og login status"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Target URL vil blive valgt fra en af de følgende URLs, afhængig af om brugeen er logget ind eller ej. Hvis du lader en URL være blank betyder det, at brugeren ikke er redirected."],"Logged In":[null,"Logget Ind"],"Logged Out":[null,"Logget Ud"],"URL and referrer":[null,"URL og henvisning"],"Referrer":[null,"Henvisning"],"Regex":[null,"Regex"],"HTTP Code":[null,"HTTP Kode"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Brugeren vil blive redirected fra kilde URL hvis henvisningen matcher. Du kan specificere en <em>matchende</em> target URL som den adresse hvor brugerne sendes hen, hvis de matcher og en <em>ikke matchende</em> hvis de ikke matcher. Lader du en URL være blank betyder det, at brugeren ikke redirectes."],"Matched":[null,"Matcher"],"Not matched":[null,"Matcher ikke"],"URL only":[null,"Kun URL"],"Target URL":[null,"Target URL"],"URL and user agent":[null,"URL og user agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"Firefox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"iPad":[null,"iPad"],"Android":[null,"Android"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"User Agent"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Brugeren vil blive redirected fra kilde URL hvis user agent matcher. Du kan specificere en <em>matchende</em> target URL som den adresse hvor brugerne sendes hen, hvis de matcher og <em>ikke matchende</em> hvis de ikke matcher. Hvis URL efterlades blank betyder det, at brugeren ikke redirectes. <strong>Alle matches foretages som regulære udtryk</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"Redirections":[null,"Redirections"],"Modified Posts":[null,"Ændrede poster"],"Yes":[null,"Ja"],"No":[null,"Nej"],"404 Errors":[null,"404 Fejl"],"Strip WWW":[null,"Fjern WWW"],"Force WWW":[null,"Forcér WWW"],"Strip index.php":[null,"Fjern index.php"],"Previous":[null,"Forrige"],"Next":[null,"Næste"],"%d per-page":[null,"%d pr. side"],"Displaying %s&#8211;%s of %s":[null,"Viser %s&#8211;%s af %s"],"Redirect to URL":[null,"Redirect til URL"],"Redirect to random post":[null,"Redirect til tilfældigt indlæg"],"Pass-through":[null,"Pass-through"],"Error (404)":[null,"Fejl (404)"],"Do nothing":[null,"Gør ingenting"],"Log 404s":[null,"Log 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Deaktiveret: Du skal aktivere <a href=\"options-permalink.php\">permalinks</a> før du kan bruge det</strong>"],"<small>No options have been set</small>":[null,"<small>Ingen indstillinger blev ændret</small>"],"Location":[null,"Lokation"],"WordPress is installed in: <code>%s</code>":[null,"WordPress er installeret i: <code>%s</code>"],"Canonical":[null,"Canonical"],"Leave as is":[null,"Ingen ændriger"],"Strip WWW (%s)":[null,"Fjern WWW (%s)"],"Force WWW (www.%s)":[null,"Forcér WWW (www.%s)"],"Strip Index":[null,"Fjern Index"],"Strip index files (html,php)":[null,"Fjern index filer (html,php)"],"Memory Limit":[null,"Hukommelsesbegrænsning"],"Server default":[null,"Server default"],"Error Level":[null,"Fejl Level"],"No errors":[null,"Ingen fejl"],"Show errors":[null,"Vis fejl"],"Ban IPs":[null,"Ekskludér IPs"],"Allow IPs":[null,"Tillad IPs"],"Raw .htaccess":[null,"Rå .htaccess"],"Site URL":[null,"Site URL"],"Advanced: For management of external sites":[null,"Avanceret: For håndtering af eksterne sites"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Lokationen er ugyldig - check at stien eksisterer</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Kunne ikke skrive til konfigurerede <code>.htaccess</code> fil - check fil tilladelser</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Deaktiveret: indtast lokationen af <code>.htaccess</code> filen for at gøre dette validt</strong>"],"strip WWW":[null,"fjern WWW"],"force WWW":[null,"forcér WWW"],"strip index":[null,"fjern index"],"memory limit at %dMB":[null,"Hukommelsesbegræsning på %dMB"],"no errors":[null,"ingen fejl"],"show errors":[null,"vis fejl"],"IPs are banned":[null,"IPs er ekskluderet"],"IPs are allowed":[null,"IPs er tilladte"],"Add new redirection":[null,"Tilføj ny redirection."],"Your redirection has been added.":[null,"Dit redirect er tilføjet."],"Source URL":[null,"Kilde URL"],"Match":[null,"Match"],"Action":[null,"Action"],"Regular expression":[null,"Regulært udtryk"],"Group":[null,"Gruppe"],"Add Redirection":[null,"Tilføj redirect"],"Name":[null,"Navn"],"Tracked":[null,"Tracked"],"Whether to track 'hits' to items":[null,"Antal 'hits' til hver redirect "],"Enabled":[null,"Aktiveret"],"Disabling a group will disable all items contained within it":[null,"Deaktivering af en gruppe vil deaktivere all objekter indeholdt i gruppen"],"Save":[null,"Gem"],"Cancel":[null,"Annullér"],"edit group":[null,"redigér gruppe"],"disabled":[null,"deaktiveret"],"Groups for module":[null,"Grupper for moduler"],"Module":[null,"Modul"],"Search":[null,"Søg"],"go":[null,"send"],"Hits":[null,"Hits"],"Select All":[null,"Vælg Alle"],"Toggle":[null,"Skift"],"Reset Hits":[null,"Nulstil Hits"],"Delete":[null,"Slet"],"Move To":[null,"Flyt til"],"Go":[null,"Send"],"re-order":[null,"Sorter"],"save order":[null,"gem opstilling"],"You have no groups in this module.":[null,"Du har ingen grupper i modulet"],"Add Group":[null,"Tilføj gruppe"],"Add":[null,"Tilføj"],"%s by matching %s":[null,"%s ved at matche %s"],"Title":[null,"Titel"],"optional":[null,"valgfri"],"Redirections for group":[null,"Redirections for gruppe"],"Last Access":[null,"Sidste adgang"],"Type":[null,"Type"],"URL":[null,"URL"],"Position":[null,"Position"],"You have no redirections.":[null,"Du har ingen redirects"],"Redirection Log":[null,"Redirection Log"],"Bulk Actions":[null,"Flere handlinger"],"Apply":[null,"Tilføj"],"Filter":[null,"Filter"],"Date":[null,"Dato"],"IP":[null,"IP"],"There are no logs to display!":[null,"Der er ingen logs at vise"],"Process Current Logs":[null,"Proces for nuværende logs"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Tilføjelserne vil påvirke alle nuværende tilgængelige logs (dvs. din søgeforespørgsel vil filtrere de forskellige logs)"],"Delete Logs":[null,"Fjern logs"],"Redirect to":[null,"Redirect til"],"Redirected by":[null,"Redirected af"],"for":[null,"For"],"View as":[null,"Vis som"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"redigér"],"delete":[null,"slet"],"reset":[null,"nulstil"],"Modules":[null,"Moduler"],"Details":[null,"Detaljer"],"Groups":[null,"Grupper"],"Items":[null,"Objekter"],"Operations":[null,"Operationer"],"Note: Hits are dependant on log entries":[null,"Bemærk: Hits er afhængig af log tilføjelser"],"You have no modules defined yet":[null,"Du har ikke defineret nogle moduler endnu"],"Add Module":[null,"Tilføj Modul"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Et modul er et element, der kontrollerer hvordan redirects håndteres. Elementer i et WordPress modul er håndteret af WordPress, elementer i et Apache modul er håndteret i <code>.htaccess</code>, og elementer i et 404 modul påvirker hvordan 404 fejl er gemt."],"Create":[null,"Tilføj"],"Options":[null,"Indstillinger"],"Auto-generate URL":[null,"Auto-generér URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Dette vil blive brugt til at auto-generere en URL hvis ingen URL er givet. Du kan bruge specielle tags $dec$ eller $hex$ for at indsætte en unik ID (enten decimal eller hex)"],"IP Lookup Service":[null,"IP Lookup Service"],"Plugin Support":[null,"Plugin Support"],"I'm a nice person and I have helped support the author of this plugin":[null,"Jeg er en flink person og jeg har hjulpet vedkommende, der har udarbejdet dette plugin."],"Logging":[null,"Logging"],"log redirected requests":[null,"log redirectede forespørgelser"],"log 404 Not Found requests":[null,"log 404 ikke fundet forespørgelser"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Fravælg en eller begge af disse for at fjerne logging og reducér database load hvis dine redirectede URLs bliver forespurgt på hyppigt, og/eller hvis dit website er meget besøgt eller siderne ofte ikke kan findes."],"Expire Logs":[null,"Logs udløber efter"],"days (enter 0 for no expiry)":[null,"dage (indtast 0 for ingen udløbsdato)"],"RSS Token":[null,"RSS Token"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"En unik token der tillader feed readers adgang til Redirection RSS (undgå at udfylde for at auto-generere)"],"URL Monitoring":[null,"URL Monitorering"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Du kan sætte Redirection til at opdage ændringer i URLs automatisk og opsætte automatiske redirections i en specifik gruppe."],"Post &amp; Page URLs":[null,"Indlæg og Side URLs"],"Don't monitor":[null,"Monitorér ikke"],"Monitor new posts":[null,"Monitorér nye indlæg"],"Category URLs":[null,"Kategori URLs"],"Update":[null,"Opdatér"],"Import":[null,"Importér"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Her kan du importere redirections fra en eksisterende .htaccess fil, en csv fil, eller en Redirection XML."],"Import into":[null,"Importér i"],"Upload":[null,"Upload"],"Note that the group is ignored when uploading an XML file.":[null,"Bemærk at gruppen er ignoreret når du uploader en XML fil."],"Delete Redirection":[null,"Fjern Rediretion."],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Ved at vælge denne mulighed sletter du alle redirections, alle logs, og alle indstillinger associeret med plugin'et Redirection. Vær helt sikker på at det er det, du vil."],"Redirects":[null,"Redirects"],"Log":[null,"Log"],"Support":[null,"Support"],"Redirection Support":[null,"Redirection Support"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Redirection er gratis at bruge - livet er fantastisk og perfekt. Men Redirection har taget lang tid at udvikle, så hvis du finder det brugbart, kan du hjælpe med at supportere udviklingen yderligere ved at <strong>donere et lille beløb</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Dette vil være et incitament for mig til at forsætte med at programmere, udvikle yderligere tiltag og bruge uendeligt mange timer på support. Du får brugbar software og jeg får muligheden for at blive ved med at udvikle det. Alle vinder."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Hvis du benytter dette plugin i kommercielt øjemed eller føler at plugin'et er særdeles brugbart, vil jeg bede dig om at overveje en <strong>kommerciel donation</strong>."],"Individual<br/>Donation":[null,"Individuel donation"],"Commercial<br/>Donation":[null,"Kommerciel<br/>Donation"],"Translations":[null,"Oversættelser"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Hvis du er flersproget vil du måske overveje at donere en oversættelse:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"All oversættere vil få et link til deres website placeret på hjemmesiden for plugin'et på <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, udover at være en individuel supporter."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Alle detaljer for at oversætte et plugin kan findes i denne <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide til at oversætte WordPress Plugins</a>."]}
 
locale/json/redirection-de_DE.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-09-26 13:21:39+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"de","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,""],"Never cache":[null,""],"An hour":[null,""],"Redirect Cache":[null,""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,""],"Are you sure you want to import from %s?":[null,""],"Plugin Importers":[null,""],"The following redirect plugins were detected on your site and can be imported from.":[null,""],"total = ":[null,""],"Import from %s":[null,""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,""],"Redirection not installed properly":[null,""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,""],"Default WordPress \"old slugs\"":[null,""],"Create associated redirect (added to end of URL)":[null,""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,""],"⚡️ Magic fix ⚡️":[null,""],"Plugin Status":[null,""],"Custom":[null,""],"Mobile":[null,""],"Feed Readers":[null,""],"Libraries":[null,""],"URL Monitor Changes":[null,""],"Save changes to this group":[null,""],"For example \"/amp\"":[null,""],"URL Monitor":[null,""],"Monitor changes to pages":[null,""],"Monitor trashed items (will create disabled redirects)":[null,""],"Delete 404s":[null,""],"Delete all logs for this 404":[null,""],"Delete all from IP %s":[null,""],"Delete all matching \"%s\"":[null,""],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,""],"Also check if your browser is able to load <code>redirection.js</code>:":[null,""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,""],"Unable to load Redirection":[null,""],"Unable to create group":[null,""],"Failed to fix database tables":[null,""],"Post monitor group is valid":[null,""],"Post monitor group is invalid":[null,""],"Post monitor group":[null,""],"All redirects have a valid group":[null,""],"Redirects with invalid groups detected":[null,""],"Valid redirect group":[null,""],"Valid groups detected":[null,""],"No valid groups, so you will not be able to create any redirects":[null,""],"Valid groups":[null,""],"Database tables":[null,""],"The following tables are missing:":[null,""],"All tables present":[null,""],"Cached Redirection detected":[null,""],"Please clear your browser cache and reload this page.":[null,""],"The data on this page has expired, please reload.":[null,""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,"WordPress hat keine Antwort zurückgegeben. Dies könnte bedeuten, dass ein Fehler aufgetreten ist oder dass die Anfrage blockiert wurde. Bitte überprüfe Deinen Server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,"Dein Server hat einen 403-Verboten Fehler zurückgegeben, der darauf hindeuten könnte, dass die Anfrage gesperrt wurde. Verwendest du eine Firewall oder ein Sicherheits-Plugin?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,"WordPress hat eine unerwartete Nachricht zurückgegeben. Dies zeigt normalerweise an, dass ein Plugin oder ein Theme Daten ausgibt, wenn es nicht sein sollte. Versuche bitte, andere Plugins zu deaktivieren und versuchen es erneut."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,"Wenn das Problem nicht bekannt ist, dann versuche, andere Plugins zu deaktivieren - es ist einfach und du kannst sie schnell wieder aktivieren. Andere Plugins können manchmal Konflikte verursachen."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,"Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."],"If you think Redirection is at fault then create an issue.":[null,""],"This may be caused by another plugin - look at your browser's error console for more details.":[null,""],"Loading, please wait...":[null,"Lädt, bitte warte..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,"Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,""],"Create Issue":[null,""],"Email":[null,"E-Mail"],"Important details":[null,"Wichtige Details"],"Need help?":[null,"Hilfe benötigt?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,""],"Pos":[null,""],"410 - Gone":[null,"410 - Entfernt"],"Position":[null,"Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,""],"Apache Module":[null,"Apache Modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,""],"Import to group":[null,"Importiere in Gruppe"],"Import a CSV, .htaccess, or JSON file.":[null,"Importiere eine CSV, .htaccess oder JSON Datei."],"Click 'Add File' or drag and drop here.":[null,"Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."],"Add File":[null,"Datei hinzufügen"],"File selected":[null,"Datei ausgewählt"],"Importing":[null,"Importiere"],"Finished importing":[null,"Importieren beendet"],"Total redirects imported:":[null,"Umleitungen importiert:"],"Double-check the file is the correct format!":[null,"Überprüfe, ob die Datei das richtige Format hat!"],"OK":[null,"OK"],"Close":[null,"Schließen"],"All imports will be appended to the current database.":[null,"Alle Importe werden der aktuellen Datenbank hinzugefügt."],"Export":[null,"Exportieren"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,""],"Everything":[null,"Alles"],"WordPress redirects":[null,"WordPress Weiterleitungen"],"Apache redirects":[null,"Apache Weiterleitungen"],"Nginx redirects":[null,"Nginx Weiterleitungen"],"CSV":[null,"CSV"],"Apache .htaccess":[null,"Apache .htaccess"],"Nginx rewrite rules":[null,""],"Redirection JSON":[null,""],"View":[null,"Anzeigen"],"Log files can be exported from the log pages.":[null,"Protokolldateien können aus den Protokollseiten exportiert werden."],"Import/Export":[null,"Import/Export"],"Logs":[null,"Protokolldateien"],"404 errors":[null,"404 Fehler"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,""],"I'd like to support some more.":[null,""],"Support 💰":[null,"Unterstützen 💰"],"Redirection saved":[null,"Umleitung gespeichert"],"Log deleted":[null,"Log gelöscht"],"Settings saved":[null,"Einstellungen gespeichert"],"Group saved":[null,"Gruppe gespeichert"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","Bist du sicher, dass du diesen Eintrag löschen möchtest?","Bist du sicher, dass du diese Einträge löschen möchtest?"],"pass":[null,""],"All groups":[null,"Alle Gruppen"],"301 - Moved Permanently":[null,"301- Dauerhaft verschoben"],"302 - Found":[null,"302 - Gefunden"],"307 - Temporary Redirect":[null,"307 - Zeitweise Umleitung"],"308 - Permanent Redirect":[null,"308 - Dauerhafte Umleitung"],"401 - Unauthorized":[null,"401 - Unautorisiert"],"404 - Not Found":[null,"404 - Nicht gefunden"],"Title":[null,"Titel"],"When matched":[null,""],"with HTTP code":[null,"mit HTTP Code"],"Show advanced options":[null,"Zeige erweiterte Optionen"],"Matched Target":[null,"Passendes Ziel"],"Unmatched Target":[null,"Unpassendes Ziel"],"Saving...":[null,"Speichern..."],"View notice":[null,"Hinweis anzeigen"],"Invalid source URL":[null,"Ungültige Quell URL"],"Invalid redirect action":[null,"Ungültige Umleitungsaktion"],"Invalid redirect matcher":[null,""],"Unable to add new redirect":[null,""],"Something went wrong 🙁":[null,"Etwas ist schiefgelaufen 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"Ich habe versucht, etwas zu tun und es ging schief. Es kann eine vorübergehendes Problem sein und wenn du es nochmal probierst, könnte es funktionieren - toll!"],"It didn't work when I tried again":[null,"Es hat nicht geklappt, als ich es wieder versuchte."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"Log entries (%d max)":[null,"Log Einträge (%d max)"],"Search by IP":[null,"Suche nach IP"],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,"Anwenden"],"First page":[null,"Erste Seite"],"Prev page":[null,"Vorige Seite"],"Current Page":[null,"Aktuelle Seite"],"of %(page)s":[null,""],"Next page":[null,"Nächste Seite"],"Last page":[null,"Letzte Seite"],"%s item":["%s items","%s Eintrag","%s Einträge"],"Select All":[null,"Alle auswählen"],"Sorry, something went wrong loading the data - please try again":[null,"Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"],"No results":[null,"Keine Ergebnisse"],"Delete the logs - are you sure?":[null,"Logs löschen - bist du sicher?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"Einmal gelöscht, sind deine aktuellen Logs nicht mehr verfügbar. Du kannst einen Zeitplan zur Löschung in den Redirection Einstellungen setzen, wenn du dies automatisch machen möchtest."],"Yes! Delete the logs":[null,"Ja! Lösche die Logs"],"No! Don't delete the logs":[null,"Nein! Lösche die Logs nicht"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,"Newsletter"],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Melde dich für den kleinen Redirection Newsletter an - ein gelegentlicher Newsletter über neue Features und Änderungen am Plugin. Ideal, wenn du Beta Änderungen testen möchtest, bevor diese erscheinen."],"Your email address:":[null,"Deine E-Mail Adresse:"],"You've supported this plugin - thank you!":[null,"Du hast dieses Plugin bereits unterstützt - vielen Dank!"],"You get useful software and I get to carry on making it better.":[null,"Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."],"Forever":[null,"Dauerhaft"],"Delete the plugin - are you sure?":[null,"Plugin löschen - bist du sicher?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Löschen des Plugins entfernt alle deine Weiterleitungen, Logs und Einstellungen. Tu dies, falls du das Plugin dauerhaft entfernen möchtest oder um das Plugin zurückzusetzen."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."],"Yes! Delete the plugin":[null,"Ja! Lösche das Plugin"],"No! Don't delete the plugin":[null,"Nein! Lösche das Plugin nicht"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Verwalte alle 301-Umleitungen und 404-Fehler."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Redirection ist kostenlos – das Leben ist wundervoll und schön! Aber: Sehr viel Zeit und Arbeit sind in seine Entwicklung geflossen und falls es sich als nützlich erwiesen hat, kannst du die Entwicklung {{strong}}mit einer kleinen Spende unterstützen{{/strong}}."],"Support":[null,"Support"],"404s":[null,"404s"],"Log":[null,"Log"],"Delete Redirection":[null,"Umleitung löschen"],"Upload":[null,"Hochladen"],"Import":[null,"Importieren"],"Update":[null,"Aktualisieren"],"Auto-generate URL":[null,"Selbsterstellte URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"],"RSS Token":[null,"RSS Token"],"Monitor changes to posts":[null,"Änderungen an Beiträgen überwachen"],"404 Logs":[null,"404-Logs"],"(time to keep logs for)":[null,"(Dauer, für die die Logs behalten werden)"],"Redirect Logs":[null,"Umleitungs-Logs"],"I'm a nice person and I have helped support the author of this plugin":[null,"Ich bin eine nette Person und ich helfe dem Autor des Plugins"],"Plugin Support":[null,"Plugin Support"],"Options":[null,"Optionen"],"Two months":[null,"zwei Monate"],"A month":[null,"ein Monat"],"A week":[null,"eine Woche"],"A day":[null,"einen Tag"],"No logs":[null,"Keine Logs"],"Delete All":[null,"Alle löschen"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Benutze Gruppen, um deine Umleitungen zu ordnen. Gruppen werden einem Modul zugeordnet, dies beeinflusst, wie die Umleitungen in der jeweiligen Gruppe funktionieren. Falls du unsicher bist, bleib beim WordPress-Modul."],"Add Group":[null,"Gruppe hinzufügen"],"Search":[null,"Suchen"],"Groups":[null,"Gruppen"],"Save":[null,"Speichern"],"Group":[null,"Gruppe"],"Match":[null,"Passend"],"Add new redirection":[null,"Eine neue Weiterleitung hinzufügen"],"Cancel":[null,"Abbrechen"],"Download":[null,"Download"],"Redirection":[null,"Redirection"],"Settings":[null,"Einstellungen"],"Do nothing":[null,"Mache nichts"],"Error (404)":[null,"Fehler (404)"],"Pass-through":[null,"Durchreichen"],"Redirect to random post":[null,"Umleitung zu zufälligen Beitrag"],"Redirect to URL":[null,"Umleitung zur URL"],"Invalid group when creating redirect":[null,"Ungültige Gruppe für die Erstellung der Umleitung"],"Show only this IP":[null,"Nur diese IP-Adresse anzeigen"],"IP":[null,"IP"],"Source URL":[null,"URL-Quelle"],"Date":[null,"Zeitpunkt"],"Add Redirect":[null,"Umleitung hinzufügen"],"All modules":[null,"Alle Module"],"View Redirects":[null,"Weiterleitungen anschauen"],"Module":[null,"Module"],"Redirects":[null,"Umleitungen"],"Name":[null,"Name"],"Filter":[null,"Filter"],"Reset hits":[null,"Treffer zurücksetzen"],"Enable":[null,"Aktivieren"],"Disable":[null,"Deaktivieren"],"Delete":[null,"Löschen"],"Edit":[null,"Bearbeiten"],"Last Access":[null,"Letzter Zugriff"],"Hits":[null,"Treffer"],"URL":[null,"URL"],"Type":[null,"Typ"],"Modified Posts":[null,"Geänderte Beiträge"],"Redirections":[null,"Umleitungen"],"User Agent":[null,"User Agent"],"URL and user agent":[null,"URL und User-Agent"],"Target URL":[null,"Ziel-URL"],"URL only":[null,"Nur URL"],"Regex":[null,"Regex"],"Referrer":[null,"Vermittler"],"URL and referrer":[null,"URL und Vermittler"],"Logged Out":[null,"Ausgeloggt"],"Logged In":[null,"Eingeloggt"],"URL and login status":[null,"URL- und Loginstatus"]}
1
+ {"":[],"https://redirection.me/":[""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":[""],"Plugin Importers":[""],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":[""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Monitor changes to pages":[""],"Monitor trashed items (will create disabled redirects)":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":[""],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress hat keine Antwort zurückgegeben. Dies könnte bedeuten, dass ein Fehler aufgetreten ist oder dass die Anfrage blockiert wurde. Bitte überprüfe Deinen Server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":["Dein Server hat einen 403-Verboten Fehler zurückgegeben, der darauf hindeuten könnte, dass die Anfrage gesperrt wurde. Verwendest du eine Firewall oder ein Sicherheits-Plugin?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress hat eine unerwartete Nachricht zurückgegeben. Dies zeigt normalerweise an, dass ein Plugin oder ein Theme Daten ausgibt, wenn es nicht sein sollte. Versuche bitte, andere Plugins zu deaktivieren und versuchen es erneut."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Wenn das Problem nicht bekannt ist, dann versuche, andere Plugins zu deaktivieren - es ist einfach und du kannst sie schnell wieder aktivieren. Andere Plugins können manchmal Konflikte verursachen."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Füge diese Angaben in deinem Bericht {{strong}} zusammen mit einer Beschreibung dessen ein, was du getan hast{{/ strong}}."],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":["Lädt, bitte warte..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection funktioniert nicht. Versuche, Deinen Browser-Cache zu löschen und diese Seite neu zu laden."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":["E-Mail"],"Important details":["Wichtige Details"],"Need help?":["Hilfe benötigt?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":[""],"410 - Gone":["410 - Entfernt"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[""],"Apache Module":["Apache Modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[""],"Import to group":["Importiere in Gruppe"],"Import a CSV, .htaccess, or JSON file.":["Importiere eine CSV, .htaccess oder JSON Datei."],"Click 'Add File' or drag and drop here.":["Klicke auf 'Datei hinzufügen' oder Drag & Drop hier."],"Add File":["Datei hinzufügen"],"File selected":["Datei ausgewählt"],"Importing":["Importiere"],"Finished importing":["Importieren beendet"],"Total redirects imported:":["Umleitungen importiert:"],"Double-check the file is the correct format!":["Überprüfe, ob die Datei das richtige Format hat!"],"OK":["OK"],"Close":["Schließen"],"All imports will be appended to the current database.":["Alle Importe werden der aktuellen Datenbank hinzugefügt."],"Export":["Exportieren"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":["Alles"],"WordPress redirects":["WordPress Weiterleitungen"],"Apache redirects":["Apache Weiterleitungen"],"Nginx redirects":["Nginx Weiterleitungen"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":["Anzeigen"],"Log files can be exported from the log pages.":["Protokolldateien können aus den Protokollseiten exportiert werden."],"Import/Export":["Import/Export"],"Logs":["Protokolldateien"],"404 errors":["404 Fehler"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["Unterstützen 💰"],"Redirection saved":["Umleitung gespeichert"],"Log deleted":["Log gelöscht"],"Settings saved":["Einstellungen gespeichert"],"Group saved":["Gruppe gespeichert"],"Are you sure you want to delete this item?":["Bist du sicher, dass du diesen Eintrag löschen möchtest?","Bist du sicher, dass du diese Einträge löschen möchtest?"],"pass":[""],"All groups":["Alle Gruppen"],"301 - Moved Permanently":["301- Dauerhaft verschoben"],"302 - Found":["302 - Gefunden"],"307 - Temporary Redirect":["307 - Zeitweise Umleitung"],"308 - Permanent Redirect":["308 - Dauerhafte Umleitung"],"401 - Unauthorized":["401 - Unautorisiert"],"404 - Not Found":["404 - Nicht gefunden"],"Title":["Titel"],"When matched":[""],"with HTTP code":["mit HTTP Code"],"Show advanced options":["Zeige erweiterte Optionen"],"Matched Target":["Passendes Ziel"],"Unmatched Target":["Unpassendes Ziel"],"Saving...":["Speichern..."],"View notice":["Hinweis anzeigen"],"Invalid source URL":["Ungültige Quell URL"],"Invalid redirect action":["Ungültige Umleitungsaktion"],"Invalid redirect matcher":[""],"Unable to add new redirect":[""],"Something went wrong 🙁":["Etwas ist schiefgelaufen 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Ich habe versucht, etwas zu tun und es ging schief. Es kann eine vorübergehendes Problem sein und wenn du es nochmal probierst, könnte es funktionieren - toll!"],"It didn't work when I tried again":["Es hat nicht geklappt, als ich es wieder versuchte."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[""],"Log entries (%d max)":["Log Einträge (%d max)"],"Search by IP":["Suche nach IP"],"Select bulk action":[""],"Bulk Actions":[""],"Apply":["Anwenden"],"First page":["Erste Seite"],"Prev page":["Vorige Seite"],"Current Page":["Aktuelle Seite"],"of %(page)s":[""],"Next page":["Nächste Seite"],"Last page":["Letzte Seite"],"%s item":["%s Eintrag","%s Einträge"],"Select All":["Alle auswählen"],"Sorry, something went wrong loading the data - please try again":["Entschuldigung, etwas ist beim Laden der Daten schief gelaufen - bitte versuche es erneut"],"No results":["Keine Ergebnisse"],"Delete the logs - are you sure?":["Logs löschen - bist du sicher?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Einmal gelöscht, sind deine aktuellen Logs nicht mehr verfügbar. Du kannst einen Zeitplan zur Löschung in den Redirection Einstellungen setzen, wenn du dies automatisch machen möchtest."],"Yes! Delete the logs":["Ja! Lösche die Logs"],"No! Don't delete the logs":["Nein! Lösche die Logs nicht"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":[""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Melde dich für den kleinen Redirection Newsletter an - ein gelegentlicher Newsletter über neue Features und Änderungen am Plugin. Ideal, wenn du Beta Änderungen testen möchtest, bevor diese erscheinen."],"Your email address:":["Deine E-Mail Adresse:"],"You've supported this plugin - thank you!":["Du hast dieses Plugin bereits unterstützt - vielen Dank!"],"You get useful software and I get to carry on making it better.":["Du erhältst nützliche Software und ich komme dazu, sie besser zu machen."],"Forever":["Dauerhaft"],"Delete the plugin - are you sure?":["Plugin löschen - bist du sicher?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Löschen des Plugins entfernt alle deine Weiterleitungen, Logs und Einstellungen. Tu dies, falls du das Plugin dauerhaft entfernen möchtest oder um das Plugin zurückzusetzen."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Einmal gelöscht, werden deine Weiterleitungen nicht mehr funktionieren. Falls sie es dennoch tun sollten, leere bitte deinen Browser Cache."],"Yes! Delete the plugin":["Ja! Lösche das Plugin"],"No! Don't delete the plugin":["Nein! Lösche das Plugin nicht"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Verwalte alle 301-Umleitungen und 404-Fehler."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection ist kostenlos – das Leben ist wundervoll und schön! Aber: Sehr viel Zeit und Arbeit sind in seine Entwicklung geflossen und falls es sich als nützlich erwiesen hat, kannst du die Entwicklung {{strong}}mit einer kleinen Spende unterstützen{{/strong}}."],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Umleitung löschen"],"Upload":["Hochladen"],"Import":["Importieren"],"Update":["Aktualisieren"],"Auto-generate URL":["Selbsterstellte URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Einzigartiges Token, das RSS-Klienten Zugang zum Umleitung-Log-Feed gewährt. (freilassen, um automatisch zu generieren)"],"RSS Token":["RSS Token"],"Monitor changes to posts":["Änderungen an Beiträgen überwachen"],"404 Logs":["404-Logs"],"(time to keep logs for)":["(Dauer, für die die Logs behalten werden)"],"Redirect Logs":["Umleitungs-Logs"],"I'm a nice person and I have helped support the author of this plugin":["Ich bin eine nette Person und ich helfe dem Autor des Plugins"],"Plugin Support":["Plugin Support"],"Options":["Optionen"],"Two months":["zwei Monate"],"A month":["ein Monat"],"A week":["eine Woche"],"A day":["einen Tag"],"No logs":["Keine Logs"],"Delete All":["Alle löschen"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Benutze Gruppen, um deine Umleitungen zu ordnen. Gruppen werden einem Modul zugeordnet, dies beeinflusst, wie die Umleitungen in der jeweiligen Gruppe funktionieren. Falls du unsicher bist, bleib beim WordPress-Modul."],"Add Group":["Gruppe hinzufügen"],"Search":["Suchen"],"Groups":["Gruppen"],"Save":["Speichern"],"Group":["Gruppe"],"Match":["Passend"],"Add new redirection":["Eine neue Weiterleitung hinzufügen"],"Cancel":["Abbrechen"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Einstellungen"],"Do nothing":["Mache nichts"],"Error (404)":["Fehler (404)"],"Pass-through":["Durchreichen"],"Redirect to random post":["Umleitung zu zufälligen Beitrag"],"Redirect to URL":["Umleitung zur URL"],"Invalid group when creating redirect":["Ungültige Gruppe für die Erstellung der Umleitung"],"Show only this IP":["Nur diese IP-Adresse anzeigen"],"IP":["IP"],"Source URL":["URL-Quelle"],"Date":["Zeitpunkt"],"Add Redirect":["Umleitung hinzufügen"],"All modules":["Alle Module"],"View Redirects":["Weiterleitungen anschauen"],"Module":["Module"],"Redirects":["Umleitungen"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Treffer zurücksetzen"],"Enable":["Aktivieren"],"Disable":["Deaktivieren"],"Delete":["Löschen"],"Edit":["Bearbeiten"],"Last Access":["Letzter Zugriff"],"Hits":["Treffer"],"URL":["URL"],"Type":["Typ"],"Modified Posts":["Geänderte Beiträge"],"Redirections":["Umleitungen"],"User Agent":["User Agent"],"URL and user agent":["URL und User-Agent"],"Target URL":["Ziel-URL"],"URL only":["Nur URL"],"Regex":["Regex"],"Referrer":["Vermittler"],"URL and referrer":["URL und Vermittler"],"Logged Out":["Ausgeloggt"],"Logged In":["Eingeloggt"],"URL and login status":["URL- und Loginstatus"]}
locale/json/redirection-el_GR.json DELETED
@@ -1 +0,0 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection 2.2.5","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2011-07-17 10:14:58+00:00","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","po-revision-date":"2011-07-18 05:48+0200","last-translator":"Titanas <stefanos.kofopoulos@gmail.com>","language-team":"Titanas <stefanos.kofopoulos@gmail.com>","x-poedit-language":"Greek","x-poedit-country":"GREECE","x-poedit-sourcecharset":"utf-8"},"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s εισήχθη στο %s σε %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"Η εισαγωγή XML είναι εφικτή με PHP5 - χρησιμοποιείτε PHP4."],"Groups for module":[null,"Ομάδες module"],"Module":[null,"Module"],"Search":[null,"Αναζήτηση"],"go":[null,"τώρα"],"Hits":[null,"Hits"],"Name":[null,"Όνομα"],"Select All":[null,"Επιλογή όλων"],"Toggle":[null,"Toggle"],"Reset Hits":[null,"Μηδενισμός"],"Delete":[null,"Διαγραφή"],"Move To":[null,"Μεταφορά σε"],"Go":[null,"Τώρα"],"re-order":[null,"αναδιοργάνωση"],"save order":[null,"αποθήκευση σειράς"],"You have no groups in this module.":[null,"Δεν υπάρχουν ομάδες σε αυτό το module"],"Add Group":[null,"Προσθήκη ομάδας"],"Add":[null,"Προσθήκη"],"No items have been selected":[null,"Επιλέξτε κάτι"],"Are you sure?":[null,"Σίγουρα;"],"Redirects":[null,"Redirects"],"Groups":[null,"Ομάδες"],"Modules":[null,"Modules"],"Log":[null,"Αρχείο"],"Options":[null,"Επιλογές"],"Support":[null,"Υποστήριξη"],"View as":[null,"Προβολή ως"],"CSV":[null,"CSV"],"XML":[null,"XML"],"Apache":[null,"Apache"],"RSS":[null,"RSS"],"edit":[null,"επεξεργασία"],"delete":[null,"διαγραφή"],"reset":[null,"μηδενισμός"],"Redirection Log":[null,"Αρχείο"],"Bulk Actions":[null,"Ομαδικές εργασίες"],"Apply":[null,"Επιλογή"],"Group":[null,"Ομάδα"],"Filter":[null,"Φίλτρο"],"Date":[null,"Ημερομηνία"],"Source URL":[null,"Διεύθυνση"],"Referrer":[null,"από"],"IP":[null,"IP"],"There are no logs to display!":[null,"Δεν υπάρχει διαθέσιμο αρχείο"],"Process Current Logs":[null,"Επεξεργασία αρχείου"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Η επιλογή αυτή θα επηρεάσει όλο το αποθηκευμένο αρχείο"],"Delete Logs":[null,"Διαγραγή αρχείου"],"Redirections for group":[null,"Redirection για ομάδες"],"Last Access":[null,"Πρόσβαση"],"Type":[null,"Τύπος"],"URL":[null,"URL"],"Position":[null,"Θέση"],"You have no redirections.":[null,"Καμία προώθηση"],"Redirect to":[null,"Προώθηση σε"],"Redirected by":[null,"Προώθηση από"],"for":[null,"για"],"User Agent":[null,"User Agent"],"disabled":[null,"ανενεργό"],"%s by matching %s":[null,"%s να ταιριάζει σε %s"],"Title":[null,"Τίτλος"],"optional":[null,"προαιρετικό"],"Regex":[null,"Regex"],"Save":[null,"Αποθήκευση"],"Cancel":[null,"Άκυρο"],"Add new redirection":[null,"Προσθήκη νέας προώθησης"],"Your redirection has been added.":[null,"Η προσθήκη ήταν επιτυχής"],"Match":[null,"Ταιριάζει"],"Action":[null,"Επιλογές"],"Regular expression":[null,"Regular expression"],"Target URL":[null,"Διεύθυνση"],"Add Redirection":[null,"Νέα προώθηση"],"edit group":[null,"επεξεργασία ομάδας"],"Details":[null,"Λεπτομέρειες"],"Items":[null,"Στοιχεία"],"Operations":[null,"Λειτουργίες"],"Note: Hits are dependant on log entries":[null,"Ο αριθμός εμφανίσεων εξαρτάταιι από το αρχείο"],"You have no modules defined yet":[null,"Δεν υπάρχουν module"],"Add Module":[null,"Νέο module"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Το module ελέγχει τις προωθήσεις. Στοιχεία στο WordPress module ελέγχονται από το WordPress, στοιχεία στο Apache module ελέγχονται από το <code>.htaccess</code> ενώ τα στοιχεία στo 404 module καθορίζουν την συμπεριφορά του αρχείου σφαλμάτων 404."],"Create":[null,"Δημιουργία"],"Redirection Support":[null,"Υποστήριξη"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Το Redirection είναι δωρεάν για όλους αλλά η δημιουργία και η συντήρηση του plugin απαιτεί πολύ χρόνοα και προσπάθεια. Θα βοηθούσε ιδιαίτερα <strong>οποιαδήποτε δωρεά, ανεξαρτήτως ποσού</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Θα με βοηθήσετε να συνεχίσω να αναπτύσσω το plugin με νέα χαρακτηριστικά και υποδείξεις από εσάς. Κερδίζετε λογισμισκό που λύνει τα προβήματα σας και εγώ λίγα χρήματα."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Αν χρησιμοποιείτε το plugin για εμποριδκό σκοπό ή πιστεύετε ότι είναι χρήσιμο, μπορείτε να προχωρήσετε σε <strong>δωρεά για αυτό τον σκοπό</strong>."],"Individual<br/>Donation":[null,"Ιδιώτες<br/>Δωρεά"],"Commercial<br/>Donation":[null,"Εμπορική χρήση<br/>Δωρεά"],"Translations":[null,"Μεταφράσεις"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Μπορείτε να βοηθήσετε στην μετάφραση!"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Όλοι οι μεταφραστές θα λάβουν link από το site του plugin <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, με επιπλέον την διάκριση ως ιδιώτης υποστηρικτής"],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Όλες οι πληροφορίες για την δημιουργία νέας μετάφρασης βρίσκονται στον <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">οδηγό μετάφρασης WordPress plugins</a>."],"Auto-generate URL":[null,"Αυτόματη δημιουργία URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Χρησιμοποιείται στην αυτόματη δημιουργία URL αν δεν έχει οριστεί κάποιο. Εφικτή η χρήση $dec$ ή $hex$ ως μοναδικά χαρακτηριστικά (ID) (decimal ή hex)"],"IP Lookup Service":[null,"Έρευση IP"],"Plugin Support":[null,"Υποστήριξη"],"I'm a nice person and I have helped support the author of this plugin":[null,"Έχω ήδη υποστηρίξει με δωρεά το plugin"],"Logging":[null,"Αρχείο"],"log redirected requests":[null,"αρχείο προωθήσεων"],"log 404 Not Found requests":[null,"αρχείο σφάλματος 404 "],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Απενεργοποίηση του ενός ή και των δύο επιλογών για μείωση του φόρτου στην βάδη δεδομένων, συνίσταται για sites με αυξημένη επισκεψιμότητα."],"Expire Logs":[null,"Παλιό αρχείο"],"days (enter 0 for no expiry)":[null,"ημέρες (0 για πάντα)"],"RSS Token":[null,"RSS Token"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Μοναδικό token που επιτρέπει πρόσβαση feed readers στο Redirection RSS (κενό για αυτόματη δημιουργία)"],"URL Monitoring":[null,"Παρακολούθηση URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Το Redirection μπορεί να παρακολουθεί τις αλλαγές και να δημιουργεί αυτόματα προωθήσεις στην κατάλληλη ομάδα."],"Post &amp; Page URLs":[null,"URL άρθρου &amp; σελίδας"],"Don't monitor":[null,"Χωρίς παρακολούθηση"],"Monitor new posts":[null,"Παρακολούθηση νέων άρθρων"],"Category URLs":[null,"Κατηγορίες URLs"],"Update":[null,"Ενημέρωση"],"Import":[null,"Εισαγωγή"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Εισαγωγή προωθήσεων από αρχείο .htaccess ή CSV ή Redirection XML."],"Import into":[null,"Εισαγωγή σε"],"Upload":[null,"Φόρτωση"],"Note that the group is ignored when uploading an XML file.":[null,"Η ομάδα αγνοείται όταν χρησιμοποιείται αρχείο XML"],"Delete Redirection":[null,"Διαγραφή Redirection"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Αυτή η επιλογή θα διαγράψει όλες τις προωθήσεις, όλο το αρχείο και όλες τις ρυθμίσεις του Redirection plugin. Βεβαιωθείτε ότι θέλετε να προχωρήσετε."],"Tracked":[null,"Παρακολουθείται ήδη"],"Whether to track 'hits' to items":[null,"Καταμέτρηση εμφανίσεων ή μη"],"Enabled":[null,"Ενεργοποιήθηκε"],"Disabling a group will disable all items contained within it":[null,"Η απενεργοποίηση ομάδας απενεργοποιεί όλα τα μέλη"],"Log 404s":[null,"Αρχείο για 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Απενεργοποιημένο: Πρέπει να ενεργοποιήσετε τα <a href=\"options-permalink.php\">permalinks</a> πριν την χρήση</strong>"],"<small>No options have been set</small>":[null,"<small>Δεν έχουν οριστεί ρυθμίσεις</small>"],"Location":[null,"Τοποθεσία"],"WordPress is installed in: <code>%s</code>":[null,"Εγκατάσταση WordPress σε: <code>%s</code>"],"Canonical":[null,"Canonical"],"Leave as is":[null,"ως έχει"],"Strip WWW (%s)":[null,"Χωρίς Strip WWW (%s)"],"Force WWW (www.%s)":[null,"Με Force WWW (www.%s)"],"Strip Index":[null,"χωρίς Index"],"Strip index files (html,php)":[null,"Χωρίς index (html,php)"],"Memory Limit":[null,"Όριο μνήμης"],"Server default":[null,"Προεπιλογή"],"Error Level":[null,"Διαβάθμιση σφάλματος"],"No errors":[null,"Χωρίς σφάλμα"],"Show errors":[null,"Προβολή σφάλματος"],"Ban IPs":[null,"Απαγορευμένες IP"],"Allow IPs":[null,"Επιτρεπτές IP"],"Raw .htaccess":[null,"Raw .htaccess"],"Site URL":[null,"URL"],"Advanced: For management of external sites":[null,"Για προχωρημένους: διαχείριση εξωτερικών sites"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Λάθος τοποθεσία - ελέγξτε ξανά</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Δεν ήταν δυνατή η εγγραφή στο <code>.htaccess</code> - ελέγξτε τις ρυθμίσεις</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Ανενεργό: εισάγετε την τοποθεσία του <code>.htaccess</code> για να ενεργοποιηθεί</strong>"],"strip WWW":[null,"χωρίς WWW"],"force WWW":[null,"με WWW"],"strip index":[null,"χωρίς index"],"memory limit at %dMB":[null,"όριο μνήμης %dMB"],"no errors":[null,"χωρίς σφάλμα"],"show errors":[null,"Προβολή σφάλματος"],"IPs are banned":[null,"Απαγορευμένες IPs"],"IPs are allowed":[null,"Επιτρεπόμενες IPs"],"Redirect to URL":[null,"Προώθηση σε URL"],"Redirect to random post":[null,"Προώθηση σε τυχαίο άρθρο"],"Pass-through":[null,"Pass-through"],"Error (404)":[null,"Σφάλμα (404)"],"Do nothing":[null,"Τίποτα"],"WordPress":[null,"WordPress"],"404 Errors":[null,"Σφάλμα 404"],"Strip WWW":[null,"χωρίς WWW"],"Force WWW":[null,"με WWW"],"Strip index.php":[null,"χωρίς index.php"],"Redirections":[null,"Redirections"],"Modified Posts":[null,"Άρθρα που έχουν αλλάξει"],"Previous":[null,"Προηγούμενο"],"Next":[null,"Επόμενο"],"%d per-page":[null,"%d ανά σελίδα"],"Displaying %s&#8211;%s of %s":[null,"Προβολή %s&#8211;%s από %s"],"Yes":[null,"Ναι"],"No":[null,"Όχι"],"Sorry, but your redirection was not created":[null,"Δεν ήταν εφικτή η δημιουργία προώθησης"],"Settings":[null,"Ρυθμίσεις"],"Please wait...":[null,"Αναμονή..."],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Επιτυχής δημιουργία module"],"Your module was not created - did you provide a name?":[null,"Σφάλμα δημιουργίας module - συμπληρώστε το όνομα"],"Your options were updated":[null,"Οι ρυθμίσεις ενημερώθηκαν"],"Redirection data has been deleted and the plugin disabled":[null,"Ολοκληρώθηκε η διαγραφή δεδομένων και η απενεργοποίηση του Redirection plugin"],"%d redirection was successfully imported":["%d redirections were successfully imported",null],"No items were imported":[null,"Η εισαγωγή δεν πέτυχε"],"Your logs have been deleted":[null,"Το αρχείο διαγράφηκε"],"Your group was added successfully":[null,"Η ομάδα προστέθηκε επιτυχώς"],"Please specify a group name":[null,"Όνομα ομάδας"],"Redirection is available in":[null,"Redirection σε"],"URL only":[null,"Μόνο URL"],"HTTP Code":[null,"Κώδικας HTTP"],"URL and login status":[null,"URL και κατάσταση σύνδεσης"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Η διεύθυνση URL που θα γίνει η προώθηση θα επιλεγεί από τις παρακάτω διευθύνσεις ανάλογα αν ο χρήστης είναι συνδεδεμένος ή όχι. Κενή διεύθυνση σημαίνει ότι ο χρήστης δεν θα προωθείται σε νέα διεύθυνση."],"Logged In":[null,"Σύνδεση"],"Logged Out":[null,"Αποσυνδέθηκε"],"URL and user agent":[null,"URL και user agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Ο επισκέπτης θα προωθηθεί στην κατάλληλη διεύθυνση URL αν το user agent ταιριάζει. Προσδιορίστε διεύθυνση που να <em>ταιριάζει</em> ως τη διεύθυνση που βλέπουν οι επισκέπτες αν ταιριάζει το user agent ή όχι. Κενή διεύθυνση URL σημαίνει ότι ο επισκέπτης δεν προωθείται. <strong>Η ταυτοποίηση πραγματοποιείται με regular expressions</strong>.\n"],"Matched":[null,"Ταιριάζει"],"Not matched":[null,"Δεν ταιριάζει"],"URL and referrer":[null,"URL και πηγή"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Ο επισκέπτης θα προωθηθεί στην κατάλληλη διεύθυνση URL αν η πηγή (referrer) ταιριάζει. Προσδιορίστε διεύθυνση που να <em>ταιριάζει</em> ως τη διεύθυνση που βλέπουν οι επισκέπτες αν ταιριάζει η πηγή (referrer) ή όχι. Κενή διεύθυνση URL σημαίνει ότι ο επισκέπτης δεν προωθείται."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Manage all your 301 redirects and monitor 404 errors":[null,"Διαχείριση προωθήσεων 301 και σφαλμάτων 404"],"John Godley":[null,"John Godley"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"]}
 
locale/json/redirection-en_CA.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-10-24 16:53:58+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"en_CA","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,""],"Never cache":[null,""],"An hour":[null,""],"Redirect Cache":[null,""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,""],"Are you sure you want to import from %s?":[null,""],"Plugin Importers":[null,""],"The following redirect plugins were detected on your site and can be imported from.":[null,""],"total = ":[null,""],"Import from %s":[null,""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,""],"Redirection not installed properly":[null,""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,""],"Default WordPress \"old slugs\"":[null,""],"Create associated redirect (added to end of URL)":[null,"Create associated redirect (added to end of URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."],"⚡️ Magic fix ⚡️":[null,"⚡️ Magic fix ⚡️"],"Plugin Status":[null,"Plugin Status"],"Custom":[null,"Custom"],"Mobile":[null,"Mobile"],"Feed Readers":[null,"Feed Readers"],"Libraries":[null,"Libraries"],"URL Monitor Changes":[null,"URL Monitor Changes"],"Save changes to this group":[null,"Save changes to this group"],"For example \"/amp\"":[null,"For example \"/amp\""],"URL Monitor":[null,"URL Monitor"],"Monitor changes to pages":[null,"Monitor changes to pages"],"Monitor trashed items (will create disabled redirects)":[null,"Monitor trashed items (will create disabled redirects)"],"Delete 404s":[null,"Delete 404s"],"Delete all logs for this 404":[null,"Delete all logs for this 404"],"Delete all from IP %s":[null,"Delete all from IP %s"],"Delete all matching \"%s\"":[null,"Delete all matching \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,"Your server has rejected the request for being too big. You will need to change it to continue."],"Also check if your browser is able to load <code>redirection.js</code>:":[null,"Also check if your browser is able to load <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."],"Unable to load Redirection":[null,"Unable to load Redirection"],"Unable to create group":[null,"Unable to create group"],"Failed to fix database tables":[null,"Failed to fix database tables"],"Post monitor group is valid":[null,"Post monitor group is valid"],"Post monitor group is invalid":[null,"Post monitor group is invalid"],"Post monitor group":[null,"Post monitor group"],"All redirects have a valid group":[null,"All redirects have a valid group"],"Redirects with invalid groups detected":[null,"Redirects with invalid groups detected"],"Valid redirect group":[null,"Valid redirect group"],"Valid groups detected":[null,"Valid groups detected"],"No valid groups, so you will not be able to create any redirects":[null,"No valid groups, so you will not be able to create any redirects"],"Valid groups":[null,"Valid groups"],"Database tables":[null,"Database tables"],"The following tables are missing:":[null,"The following tables are missing:"],"All tables present":[null,"All tables present"],"Cached Redirection detected":[null,"Cached Redirection detected"],"Please clear your browser cache and reload this page.":[null,"Please clear your browser cache and reload this page."],"The data on this page has expired, please reload.":[null,"The data on this page has expired, please reload."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."],"If you think Redirection is at fault then create an issue.":[null,"If you think Redirection is at fault then create an issue."],"This may be caused by another plugin - look at your browser's error console for more details.":[null,"This may be caused by another plugin - look at your browser's error console for more details."],"Loading, please wait...":[null,"Loading, please wait..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,"Redirection is not working. Try clearing your browser cache and reloading this page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."],"Create Issue":[null,"Create Issue"],"Email":[null,"Email"],"Important details":[null,"Important details"],"Need help?":[null,"Need help?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."],"Pos":[null,"Pos"],"410 - Gone":[null,"410 - Gone"],"Position":[null,"Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted"],"Apache Module":[null,"Apache Module"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."],"Import to group":[null,"Import to group"],"Import a CSV, .htaccess, or JSON file.":[null,"Import a CSV, .htaccess, or JSON file."],"Click 'Add File' or drag and drop here.":[null,"Click 'Add File' or drag and drop here."],"Add File":[null,"Add File"],"File selected":[null,"File selected"],"Importing":[null,"Importing"],"Finished importing":[null,"Finished importing"],"Total redirects imported:":[null,"Total redirects imported:"],"Double-check the file is the correct format!":[null,"Double-check the file is the correct format!"],"OK":[null,"OK"],"Close":[null,"Close"],"All imports will be appended to the current database.":[null,"All imports will be appended to the current database."],"Export":[null,"Export"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."],"Everything":[null,"Everything"],"WordPress redirects":[null,"WordPress redirects"],"Apache redirects":[null,"Apache redirects"],"Nginx redirects":[null,"Nginx redirects"],"CSV":[null,"CSV"],"Apache .htaccess":[null,"Apache .htaccess"],"Nginx rewrite rules":[null,"Nginx rewrite rules"],"Redirection JSON":[null,"Redirection JSON"],"View":[null,"View"],"Log files can be exported from the log pages.":[null,"Log files can be exported from the log pages."],"Import/Export":[null,"Import/Export"],"Logs":[null,"Logs"],"404 errors":[null,"404 errors"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"],"I'd like to support some more.":[null,"I'd like to support some more."],"Support 💰":[null,"Support 💰"],"Redirection saved":[null,"Redirection saved"],"Log deleted":[null,"Log deleted"],"Settings saved":[null,"Settings saved"],"Group saved":[null,"Group saved"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","Are you sure you want to delete this item?","Are you sure you want to delete these items?"],"pass":[null,"pass"],"All groups":[null,"All groups"],"301 - Moved Permanently":[null,"301 - Moved Permanently"],"302 - Found":[null,"302 - Found"],"307 - Temporary Redirect":[null,"307 - Temporary Redirect"],"308 - Permanent Redirect":[null,"308 - Permanent Redirect"],"401 - Unauthorized":[null,"401 - Unauthorized"],"404 - Not Found":[null,"404 - Not Found"],"Title":[null,"Title"],"When matched":[null,"When matched"],"with HTTP code":[null,"with HTTP code"],"Show advanced options":[null,"Show advanced options"],"Matched Target":[null,"Matched Target"],"Unmatched Target":[null,"Unmatched Target"],"Saving...":[null,"Saving..."],"View notice":[null,"View notice"],"Invalid source URL":[null,"Invalid source URL"],"Invalid redirect action":[null,"Invalid redirect action"],"Invalid redirect matcher":[null,"Invalid redirect matcher"],"Unable to add new redirect":[null,"Unable to add new redirect"],"Something went wrong 🙁":[null,"Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"],"It didn't work when I tried again":[null,"It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"Log entries (%d max)":[null,"Log entries (%d max)"],"Search by IP":[null,"Search by IP"],"Select bulk action":[null,"Select bulk action"],"Bulk Actions":[null,"Bulk Actions"],"Apply":[null,"Apply"],"First page":[null,"First page"],"Prev page":[null,"Prev page"],"Current Page":[null,"Current Page"],"of %(page)s":[null,"of %(page)s"],"Next page":[null,"Next page"],"Last page":[null,"Last page"],"%s item":["%s items","%s item","%s items"],"Select All":[null,"Select All"],"Sorry, something went wrong loading the data - please try again":[null,"Sorry, something went wrong loading the data - please try again"],"No results":[null,"No results"],"Delete the logs - are you sure?":[null,"Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":[null,"Yes! Delete the logs"],"No! Don't delete the logs":[null,"No! Don't delete the logs"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":[null,"Newsletter"],"Want to keep up to date with changes to Redirection?":[null,"Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":[null,"Your email address:"],"You've supported this plugin - thank you!":[null,"You've supported this plugin - thank you!"],"You get useful software and I get to carry on making it better.":[null,"You get useful software and I get to carry on making it better."],"Forever":[null,"Forever"],"Delete the plugin - are you sure?":[null,"Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":[null,"Yes! Delete the plugin"],"No! Don't delete the plugin":[null,"No! Don't delete the plugin"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Manage all your 301 redirects and monitor 404 errors."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Support":[null,"Support"],"404s":[null,"404s"],"Log":[null,"Log"],"Delete Redirection":[null,"Delete Redirection"],"Upload":[null,"Upload"],"Import":[null,"Import"],"Update":[null,"Update"],"Auto-generate URL":[null,"Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":[null,"RSS Token"],"Monitor changes to posts":[null,"Monitor changes to posts"],"404 Logs":[null,"404 Logs"],"(time to keep logs for)":[null,"(time to keep logs for)"],"Redirect Logs":[null,"Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":[null,"I'm a nice person and I have helped support the author of this plugin."],"Plugin Support":[null,"Plugin Support"],"Options":[null,"Options"],"Two months":[null,"Two months"],"A month":[null,"A month"],"A week":[null,"A week"],"A day":[null,"A day"],"No logs":[null,"No logs"],"Delete All":[null,"Delete All"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":[null,"Add Group"],"Search":[null,"Search"],"Groups":[null,"Groups"],"Save":[null,"Save"],"Group":[null,"Group"],"Match":[null,"Match"],"Add new redirection":[null,"Add new redirection"],"Cancel":[null,"Cancel"],"Download":[null,"Download"],"Redirection":[null,"Redirection"],"Settings":[null,"Settings"],"Do nothing":[null,"Do nothing"],"Error (404)":[null,"Error (404)"],"Pass-through":[null,"Pass-through"],"Redirect to random post":[null,"Redirect to random post"],"Redirect to URL":[null,"Redirect to URL"],"Invalid group when creating redirect":[null,"Invalid group when creating redirect"],"Show only this IP":[null,"Show only this IP"],"IP":[null,"IP"],"Source URL":[null,"Source URL"],"Date":[null,"Date"],"Add Redirect":[null,"Add Redirect"],"All modules":[null,"All modules"],"View Redirects":[null,"View Redirects"],"Module":[null,"Module"],"Redirects":[null,"Redirects"],"Name":[null,"Name"],"Filter":[null,"Filter"],"Reset hits":[null,"Reset hits"],"Enable":[null,"Enable"],"Disable":[null,"Disable"],"Delete":[null,"Delete"],"Edit":[null,"Edit"],"Last Access":[null,"Last Access"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Type"],"Modified Posts":[null,"Modified Posts"],"Redirections":[null,"Redirections"],"User Agent":[null,"User Agent"],"URL and user agent":[null,"URL and user agent"],"Target URL":[null,"Target URL"],"URL only":[null,"URL only"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL and referrer"],"Logged Out":[null,"Logged Out"],"Logged In":[null,"Logged In"],"URL and login status":[null,"URL and login status"]}
1
+ {"":[],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"],"Never cache":["Never cache"],"An hour":["An hour"],"Redirect Cache":["Redirect Cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":["Are you sure you want to import from %s?"],"Plugin Importers":["Plugin Importers"],"The following redirect plugins were detected on your site and can be imported from.":["The following redirect plugins were detected on your site and can be imported from."],"total = ":["total = "],"Import from %s":["Import from %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."],"Redirection not installed properly":["Redirection not installed properly"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"],"Default WordPress \"old slugs\"":["Default WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":["Create associated redirect (added to end of URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."],"⚡️ Magic fix ⚡️":["⚡️ Magic fix ⚡️"],"Plugin Status":["Plugin Status"],"Custom":["Custom"],"Mobile":["Mobile"],"Feed Readers":["Feed Readers"],"Libraries":["Libraries"],"URL Monitor Changes":["URL Monitor Changes"],"Save changes to this group":["Save changes to this group"],"For example \"/amp\"":["For example \"/amp\""],"URL Monitor":["URL Monitor"],"Monitor changes to pages":["Monitor changes to pages"],"Monitor trashed items (will create disabled redirects)":["Monitor trashed items (will create disabled redirects)"],"Delete 404s":["Delete 404s"],"Delete all logs for this 404":["Delete all logs for this 404"],"Delete all from IP %s":["Delete all from IP %s"],"Delete all matching \"%s\"":["Delete all matching \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Your server has rejected the request for being too big. You will need to change it to continue."],"Also check if your browser is able to load <code>redirection.js</code>:":["Also check if your browser is able to load <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."],"Unable to load Redirection":["Unable to load Redirection"],"Unable to create group":["Unable to create group"],"Failed to fix database tables":["Failed to fix database tables"],"Post monitor group is valid":["Post monitor group is valid"],"Post monitor group is invalid":["Post monitor group is invalid"],"Post monitor group":["Post monitor group"],"All redirects have a valid group":["All redirects have a valid group"],"Redirects with invalid groups detected":["Redirects with invalid groups detected"],"Valid redirect group":["Valid redirect group"],"Valid groups detected":["Valid groups detected"],"No valid groups, so you will not be able to create any redirects":["No valid groups, so you will not be able to create any redirects"],"Valid groups":["Valid groups"],"Database tables":["Database tables"],"The following tables are missing:":["The following tables are missing:"],"All tables present":["All tables present"],"Cached Redirection detected":["Cached Redirection detected"],"Please clear your browser cache and reload this page.":["Please clear your browser cache and reload this page."],"The data on this page has expired, please reload.":["The data on this page has expired, please reload."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":["Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."],"If you think Redirection is at fault then create an issue.":["If you think Redirection is at fault then create an issue."],"This may be caused by another plugin - look at your browser's error console for more details.":["This may be caused by another plugin - look at your browser's error console for more details."],"Loading, please wait...":["Loading, please wait..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection is not working. Try clearing your browser cache and reloading this page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."],"Create Issue":["Create Issue"],"Email":["Email"],"Important details":["Important details"],"Need help?":["Need help?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."],"Pos":["Pos"],"410 - Gone":["410 - Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":["Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted"],"Apache Module":["Apache Module"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."],"Import to group":["Import to group"],"Import a CSV, .htaccess, or JSON file.":["Import a CSV, .htaccess, or JSON file."],"Click 'Add File' or drag and drop here.":["Click 'Add File' or drag and drop here."],"Add File":["Add File"],"File selected":["File selected"],"Importing":["Importing"],"Finished importing":["Finished importing"],"Total redirects imported:":["Total redirects imported:"],"Double-check the file is the correct format!":["Double-check the file is the correct format!"],"OK":["OK"],"Close":["Close"],"All imports will be appended to the current database.":["All imports will be appended to the current database."],"Export":["Export"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."],"Everything":["Everything"],"WordPress redirects":["WordPress redirects"],"Apache redirects":["Apache redirects"],"Nginx redirects":["Nginx redirects"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx rewrite rules"],"Redirection JSON":["Redirection JSON"],"View":["View"],"Log files can be exported from the log pages.":["Log files can be exported from the log pages."],"Import/Export":["Import/Export"],"Logs":["Logs"],"404 errors":["404 errors"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"],"I'd like to support some more.":["I'd like to support some more."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection saved"],"Log deleted":["Log deleted"],"Settings saved":["Settings saved"],"Group saved":["Group saved"],"Are you sure you want to delete this item?":["Are you sure you want to delete this item?","Are you sure you want to delete these items?"],"pass":["pass"],"All groups":["All groups"],"301 - Moved Permanently":["301 - Moved Permanently"],"302 - Found":["302 - Found"],"307 - Temporary Redirect":["307 - Temporary Redirect"],"308 - Permanent Redirect":["308 - Permanent Redirect"],"401 - Unauthorized":["401 - Unauthorized"],"404 - Not Found":["404 - Not Found"],"Title":["Title"],"When matched":["When matched"],"with HTTP code":["with HTTP code"],"Show advanced options":["Show advanced options"],"Matched Target":["Matched Target"],"Unmatched Target":["Unmatched Target"],"Saving...":["Saving..."],"View notice":["View notice"],"Invalid source URL":["Invalid source URL"],"Invalid redirect action":["Invalid redirect action"],"Invalid redirect matcher":["Invalid redirect matcher"],"Unable to add new redirect":["Unable to add new redirect"],"Something went wrong 🙁":["Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"],"It didn't work when I tried again":["It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"Log entries (%d max)":["Log entries (%d max)"],"Search by IP":["Search by IP"],"Select bulk action":["Select bulk action"],"Bulk Actions":["Bulk Actions"],"Apply":["Apply"],"First page":["First page"],"Prev page":["Prev page"],"Current Page":["Current Page"],"of %(page)s":["of %(page)s"],"Next page":["Next page"],"Last page":["Last page"],"%s item":["%s item","%s items"],"Select All":["Select All"],"Sorry, something went wrong loading the data - please try again":["Sorry, something went wrong loading the data - please try again"],"No results":["No results"],"Delete the logs - are you sure?":["Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":["Yes! Delete the logs"],"No! Don't delete the logs":["No! Don't delete the logs"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":["Your email address:"],"You've supported this plugin - thank you!":["You've supported this plugin - thank you!"],"You get useful software and I get to carry on making it better.":["You get useful software and I get to carry on making it better."],"Forever":["Forever"],"Delete the plugin - are you sure?":["Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":["Yes! Delete the plugin"],"No! Don't delete the plugin":["No! Don't delete the plugin"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Manage all your 301 redirects and monitor 404 errors."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Delete Redirection"],"Upload":["Upload"],"Import":["Import"],"Update":["Update"],"Auto-generate URL":["Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":["RSS Token"],"Monitor changes to posts":["Monitor changes to posts"],"404 Logs":["404 Logs"],"(time to keep logs for)":["(time to keep logs for)"],"Redirect Logs":["Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":["I'm a nice person and I have helped support the author of this plugin."],"Plugin Support":["Plugin Support"],"Options":["Options"],"Two months":["Two months"],"A month":["A month"],"A week":["A week"],"A day":["A day"],"No logs":["No logs"],"Delete All":["Delete All"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":["Add Group"],"Search":["Search"],"Groups":["Groups"],"Save":["Save"],"Group":["Group"],"Match":["Match"],"Add new redirection":["Add new redirection"],"Cancel":["Cancel"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Settings"],"Do nothing":["Do nothing"],"Error (404)":["Error (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Redirect to random post"],"Redirect to URL":["Redirect to URL"],"Invalid group when creating redirect":["Invalid group when creating redirect"],"Show only this IP":["Show only this IP"],"IP":["IP"],"Source URL":["Source URL"],"Date":["Date"],"Add Redirect":["Add Redirect"],"All modules":["All modules"],"View Redirects":["View Redirects"],"Module":["Module"],"Redirects":["Redirects"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Reset hits"],"Enable":["Enable"],"Disable":["Disable"],"Delete":["Delete"],"Edit":["Edit"],"Last Access":["Last Access"],"Hits":["Hits"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Modified Posts"],"Redirections":["Redirections"],"User Agent":["User Agent"],"URL and user agent":["URL and user agent"],"Target URL":["Target URL"],"URL only":["URL only"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL and referrer"],"Logged Out":["Logged Out"],"Logged In":["Logged In"],"URL and login status":["URL and login status"]}
locale/json/redirection-en_GB.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-11-16 20:11:52+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"en_GB","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,"https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"],"Never cache":[null,"Never cache"],"An hour":[null,"An hour"],"Redirect Cache":[null,"Redirect Cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":[null,"Are you sure you want to import from %s?"],"Plugin Importers":[null,"Plugin Importers"],"The following redirect plugins were detected on your site and can be imported from.":[null,"The following redirect plugins were detected on your site and can be imported from."],"total = ":[null,"total = "],"Import from %s":[null,"Import from %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."],"Redirection not installed properly":[null,"Redirection not installed properly"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"],"Default WordPress \"old slugs\"":[null,"Default WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":[null,"Create associated redirect (added to end of URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."],"⚡️ Magic fix ⚡️":[null,"⚡️ Magic fix ⚡️"],"Plugin Status":[null,"Plugin Status"],"Custom":[null,"Custom"],"Mobile":[null,"Mobile"],"Feed Readers":[null,"Feed Readers"],"Libraries":[null,"Libraries"],"URL Monitor Changes":[null,"URL Monitor Changes"],"Save changes to this group":[null,"Save changes to this group"],"For example \"/amp\"":[null,"For example \"/amp\""],"URL Monitor":[null,"URL Monitor"],"Monitor changes to pages":[null,"Monitor changes to pages"],"Monitor trashed items (will create disabled redirects)":[null,"Monitor binned items (will create disabled redirects)"],"Delete 404s":[null,"Delete 404s"],"Delete all logs for this 404":[null,"Delete all logs for this 404"],"Delete all from IP %s":[null,"Delete all from IP %s"],"Delete all matching \"%s\"":[null,"Delete all matching \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,"Your server has rejected the request for being too big. You will need to change it to continue."],"Also check if your browser is able to load <code>redirection.js</code>:":[null,"Also check if your browser is able to load <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."],"Unable to load Redirection":[null,"Unable to load Redirection"],"Unable to create group":[null,"Unable to create group"],"Failed to fix database tables":[null,"Failed to fix database tables"],"Post monitor group is valid":[null,"Post monitor group is valid"],"Post monitor group is invalid":[null,"Post monitor group is invalid"],"Post monitor group":[null,"Post monitor group"],"All redirects have a valid group":[null,"All redirects have a valid group"],"Redirects with invalid groups detected":[null,"Redirects with invalid groups detected"],"Valid redirect group":[null,"Valid redirect group"],"Valid groups detected":[null,"Valid groups detected"],"No valid groups, so you will not be able to create any redirects":[null,"No valid groups, so you will not be able to create any redirects"],"Valid groups":[null,"Valid groups"],"Database tables":[null,"Database tables"],"The following tables are missing:":[null,"The following tables are missing:"],"All tables present":[null,"All tables present"],"Cached Redirection detected":[null,"Cached Redirection detected"],"Please clear your browser cache and reload this page.":[null,"Please clear your browser cache and reload this page."],"The data on this page has expired, please reload.":[null,"The data on this page has expired, please reload."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."],"If you think Redirection is at fault then create an issue.":[null,"If you think Redirection is at fault then create an issue."],"This may be caused by another plugin - look at your browser's error console for more details.":[null,"This may be caused by another plugin - look at your browser's error console for more details."],"Loading, please wait...":[null,"Loading, please wait..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,"Redirection is not working. Try clearing your browser cache and reloading this page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."],"Create Issue":[null,"Create Issue"],"Email":[null,"Email"],"Important details":[null,"Important details"],"Need help?":[null,"Need help?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."],"Pos":[null,"Pos"],"410 - Gone":[null,"410 - Gone"],"Position":[null,"Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted"],"Apache Module":[null,"Apache Module"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."],"Import to group":[null,"Import to group"],"Import a CSV, .htaccess, or JSON file.":[null,"Import a CSV, .htaccess, or JSON file."],"Click 'Add File' or drag and drop here.":[null,"Click 'Add File' or drag and drop here."],"Add File":[null,"Add File"],"File selected":[null,"File selected"],"Importing":[null,"Importing"],"Finished importing":[null,"Finished importing"],"Total redirects imported:":[null,"Total redirects imported:"],"Double-check the file is the correct format!":[null,"Double-check the file is the correct format!"],"OK":[null,"OK"],"Close":[null,"Close"],"All imports will be appended to the current database.":[null,"All imports will be appended to the current database."],"Export":[null,"Export"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."],"Everything":[null,"Everything"],"WordPress redirects":[null,"WordPress redirects"],"Apache redirects":[null,"Apache redirects"],"Nginx redirects":[null,"Nginx redirects"],"CSV":[null,"CSV"],"Apache .htaccess":[null,"Apache .htaccess"],"Nginx rewrite rules":[null,"Nginx rewrite rules"],"Redirection JSON":[null,"Redirection JSON"],"View":[null,"View"],"Log files can be exported from the log pages.":[null,"Log files can be exported from the log pages."],"Import/Export":[null,"Import/Export"],"Logs":[null,"Logs"],"404 errors":[null,"404 errors"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"],"I'd like to support some more.":[null,"I'd like to support some more."],"Support 💰":[null,"Support 💰"],"Redirection saved":[null,"Redirection saved"],"Log deleted":[null,"Log deleted"],"Settings saved":[null,"Settings saved"],"Group saved":[null,"Group saved"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","Are you sure you want to delete this item?","Are you sure you want to delete these items?"],"pass":[null,"pass"],"All groups":[null,"All groups"],"301 - Moved Permanently":[null,"301 - Moved Permanently"],"302 - Found":[null,"302 - Found"],"307 - Temporary Redirect":[null,"307 - Temporary Redirect"],"308 - Permanent Redirect":[null,"308 - Permanent Redirect"],"401 - Unauthorized":[null,"401 - Unauthorized"],"404 - Not Found":[null,"404 - Not Found"],"Title":[null,"Title"],"When matched":[null,"When matched"],"with HTTP code":[null,"with HTTP code"],"Show advanced options":[null,"Show advanced options"],"Matched Target":[null,"Matched Target"],"Unmatched Target":[null,"Unmatched Target"],"Saving...":[null,"Saving..."],"View notice":[null,"View notice"],"Invalid source URL":[null,"Invalid source URL"],"Invalid redirect action":[null,"Invalid redirect action"],"Invalid redirect matcher":[null,"Invalid redirect matcher"],"Unable to add new redirect":[null,"Unable to add new redirect"],"Something went wrong 🙁":[null,"Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"],"It didn't work when I tried again":[null,"It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"Log entries (%d max)":[null,"Log entries (%d max)"],"Search by IP":[null,"Search by IP"],"Select bulk action":[null,"Select bulk action"],"Bulk Actions":[null,"Bulk Actions"],"Apply":[null,"Apply"],"First page":[null,"First page"],"Prev page":[null,"Prev page"],"Current Page":[null,"Current Page"],"of %(page)s":[null,"of %(page)s"],"Next page":[null,"Next page"],"Last page":[null,"Last page"],"%s item":["%s items","%s item","%s items"],"Select All":[null,"Select All"],"Sorry, something went wrong loading the data - please try again":[null,"Sorry, something went wrong loading the data - please try again"],"No results":[null,"No results"],"Delete the logs - are you sure?":[null,"Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":[null,"Yes! Delete the logs"],"No! Don't delete the logs":[null,"No! Don't delete the logs"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":[null,"Newsletter"],"Want to keep up to date with changes to Redirection?":[null,"Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":[null,"Your email address:"],"You've supported this plugin - thank you!":[null,"You've supported this plugin - thank you!"],"You get useful software and I get to carry on making it better.":[null,"You get useful software and I get to carry on making it better."],"Forever":[null,"Forever"],"Delete the plugin - are you sure?":[null,"Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":[null,"Yes! Delete the plugin"],"No! Don't delete the plugin":[null,"No! Don't delete the plugin"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Manage all your 301 redirects and monitor 404 errors"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Support":[null,"Support"],"404s":[null,"404s"],"Log":[null,"Log"],"Delete Redirection":[null,"Delete Redirection"],"Upload":[null,"Upload"],"Import":[null,"Import"],"Update":[null,"Update"],"Auto-generate URL":[null,"Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":[null,"RSS Token"],"Monitor changes to posts":[null,"Monitor changes to posts"],"404 Logs":[null,"404 Logs"],"(time to keep logs for)":[null,"(time to keep logs for)"],"Redirect Logs":[null,"Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":[null,"I'm a nice person and I have helped support the author of this plugin"],"Plugin Support":[null,"Plugin Support"],"Options":[null,"Options"],"Two months":[null,"Two months"],"A month":[null,"A month"],"A week":[null,"A week"],"A day":[null,"A day"],"No logs":[null,"No logs"],"Delete All":[null,"Delete All"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":[null,"Add Group"],"Search":[null,"Search"],"Groups":[null,"Groups"],"Save":[null,"Save"],"Group":[null,"Group"],"Match":[null,"Match"],"Add new redirection":[null,"Add new redirection"],"Cancel":[null,"Cancel"],"Download":[null,"Download"],"Redirection":[null,"Redirection"],"Settings":[null,"Settings"],"Do nothing":[null,"Do nothing"],"Error (404)":[null,"Error (404)"],"Pass-through":[null,"Pass-through"],"Redirect to random post":[null,"Redirect to random post"],"Redirect to URL":[null,"Redirect to URL"],"Invalid group when creating redirect":[null,"Invalid group when creating redirect"],"Show only this IP":[null,"Show only this IP"],"IP":[null,"IP"],"Source URL":[null,"Source URL"],"Date":[null,"Date"],"Add Redirect":[null,"Add Redirect"],"All modules":[null,"All modules"],"View Redirects":[null,"View Redirects"],"Module":[null,"Module"],"Redirects":[null,"Redirects"],"Name":[null,"Name"],"Filter":[null,"Filter"],"Reset hits":[null,"Reset hits"],"Enable":[null,"Enable"],"Disable":[null,"Disable"],"Delete":[null,"Delete"],"Edit":[null,"Edit"],"Last Access":[null,"Last Access"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Type"],"Modified Posts":[null,"Modified Posts"],"Redirections":[null,"Redirections"],"User Agent":[null,"User Agent"],"URL and user agent":[null,"URL and user agent"],"Target URL":[null,"Target URL"],"URL only":[null,"URL only"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL and referrer"],"Logged Out":[null,"Logged Out"],"Logged In":[null,"Logged In"],"URL and login status":[null,"URL and login status"]}
1
+ {"":[],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"],"Never cache":["Never cache"],"An hour":["An hour"],"Redirect Cache":["Redirect Cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"],"Are you sure you want to import from %s?":["Are you sure you want to import from %s?"],"Plugin Importers":["Plugin Importers"],"The following redirect plugins were detected on your site and can be imported from.":["The following redirect plugins were detected on your site and can be imported from."],"total = ":["total = "],"Import from %s":["Import from %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."],"Redirection not installed properly":["Redirection not installed properly"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"],"Default WordPress \"old slugs\"":["Default WordPress \"old slugs\""],"Create associated redirect (added to end of URL)":["Create associated redirect (added to end of URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."],"⚡️ Magic fix ⚡️":["⚡️ Magic fix ⚡️"],"Plugin Status":["Plugin Status"],"Custom":["Custom"],"Mobile":["Mobile"],"Feed Readers":["Feed Readers"],"Libraries":["Libraries"],"URL Monitor Changes":["URL Monitor Changes"],"Save changes to this group":["Save changes to this group"],"For example \"/amp\"":["For example \"/amp\""],"URL Monitor":["URL Monitor"],"Monitor changes to pages":["Monitor changes to pages"],"Monitor trashed items (will create disabled redirects)":["Monitor binned items (will create disabled redirects)"],"Delete 404s":["Delete 404s"],"Delete all logs for this 404":["Delete all logs for this 404"],"Delete all from IP %s":["Delete all from IP %s"],"Delete all matching \"%s\"":["Delete all matching \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Your server has rejected the request for being too big. You will need to change it to continue."],"Also check if your browser is able to load <code>redirection.js</code>:":["Also check if your browser is able to load <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."],"Unable to load Redirection":["Unable to load Redirection"],"Unable to create group":["Unable to create group"],"Failed to fix database tables":["Failed to fix database tables"],"Post monitor group is valid":["Post monitor group is valid"],"Post monitor group is invalid":["Post monitor group is invalid"],"Post monitor group":["Post monitor group"],"All redirects have a valid group":["All redirects have a valid group"],"Redirects with invalid groups detected":["Redirects with invalid groups detected"],"Valid redirect group":["Valid redirect group"],"Valid groups detected":["Valid groups detected"],"No valid groups, so you will not be able to create any redirects":["No valid groups, so you will not be able to create any redirects"],"Valid groups":["Valid groups"],"Database tables":["Database tables"],"The following tables are missing:":["The following tables are missing:"],"All tables present":["All tables present"],"Cached Redirection detected":["Cached Redirection detected"],"Please clear your browser cache and reload this page.":["Please clear your browser cache and reload this page."],"The data on this page has expired, please reload.":["The data on this page has expired, please reload."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":["Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."],"If you think Redirection is at fault then create an issue.":["If you think Redirection is at fault then create an issue."],"This may be caused by another plugin - look at your browser's error console for more details.":["This may be caused by another plugin - look at your browser's error console for more details."],"Loading, please wait...":["Loading, please wait..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection is not working. Try clearing your browser cache and reloading this page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."],"Create Issue":["Create Issue"],"Email":["Email"],"Important details":["Important details"],"Need help?":["Need help?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."],"Pos":["Pos"],"410 - Gone":["410 - Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":["Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted"],"Apache Module":["Apache Module"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."],"Import to group":["Import to group"],"Import a CSV, .htaccess, or JSON file.":["Import a CSV, .htaccess, or JSON file."],"Click 'Add File' or drag and drop here.":["Click 'Add File' or drag and drop here."],"Add File":["Add File"],"File selected":["File selected"],"Importing":["Importing"],"Finished importing":["Finished importing"],"Total redirects imported:":["Total redirects imported:"],"Double-check the file is the correct format!":["Double-check the file is the correct format!"],"OK":["OK"],"Close":["Close"],"All imports will be appended to the current database.":["All imports will be appended to the current database."],"Export":["Export"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."],"Everything":["Everything"],"WordPress redirects":["WordPress redirects"],"Apache redirects":["Apache redirects"],"Nginx redirects":["Nginx redirects"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx rewrite rules"],"Redirection JSON":["Redirection JSON"],"View":["View"],"Log files can be exported from the log pages.":["Log files can be exported from the log pages."],"Import/Export":["Import/Export"],"Logs":["Logs"],"404 errors":["404 errors"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"],"I'd like to support some more.":["I'd like to support some more."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection saved"],"Log deleted":["Log deleted"],"Settings saved":["Settings saved"],"Group saved":["Group saved"],"Are you sure you want to delete this item?":["Are you sure you want to delete this item?","Are you sure you want to delete these items?"],"pass":["pass"],"All groups":["All groups"],"301 - Moved Permanently":["301 - Moved Permanently"],"302 - Found":["302 - Found"],"307 - Temporary Redirect":["307 - Temporary Redirect"],"308 - Permanent Redirect":["308 - Permanent Redirect"],"401 - Unauthorized":["401 - Unauthorized"],"404 - Not Found":["404 - Not Found"],"Title":["Title"],"When matched":["When matched"],"with HTTP code":["with HTTP code"],"Show advanced options":["Show advanced options"],"Matched Target":["Matched Target"],"Unmatched Target":["Unmatched Target"],"Saving...":["Saving..."],"View notice":["View notice"],"Invalid source URL":["Invalid source URL"],"Invalid redirect action":["Invalid redirect action"],"Invalid redirect matcher":["Invalid redirect matcher"],"Unable to add new redirect":["Unable to add new redirect"],"Something went wrong 🙁":["Something went wrong 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!"],"It didn't work when I tried again":["It didn't work when I tried again"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."],"Log entries (%d max)":["Log entries (%d max)"],"Search by IP":["Search by IP"],"Select bulk action":["Select bulk action"],"Bulk Actions":["Bulk Actions"],"Apply":["Apply"],"First page":["First page"],"Prev page":["Prev page"],"Current Page":["Current Page"],"of %(page)s":["of %(page)s"],"Next page":["Next page"],"Last page":["Last page"],"%s item":["%s item","%s items"],"Select All":["Select All"],"Sorry, something went wrong loading the data - please try again":["Sorry, something went wrong loading the data - please try again"],"No results":["No results"],"Delete the logs - are you sure?":["Delete the logs - are you sure?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically."],"Yes! Delete the logs":["Yes! Delete the logs"],"No! Don't delete the logs":["No! Don't delete the logs"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Want to keep up to date with changes to Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."],"Your email address:":["Your email address:"],"You've supported this plugin - thank you!":["You've supported this plugin - thank you!"],"You get useful software and I get to carry on making it better.":["You get useful software and I get to carry on making it better."],"Forever":["Forever"],"Delete the plugin - are you sure?":["Delete the plugin - are you sure?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."],"Yes! Delete the plugin":["Yes! Delete the plugin"],"No! Don't delete the plugin":["No! Don't delete the plugin"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Manage all your 301 redirects and monitor 404 errors"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."],"Support":["Support"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Delete Redirection"],"Upload":["Upload"],"Import":["Import"],"Update":["Update"],"Auto-generate URL":["Auto-generate URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"],"RSS Token":["RSS Token"],"Monitor changes to posts":["Monitor changes to posts"],"404 Logs":["404 Logs"],"(time to keep logs for)":["(time to keep logs for)"],"Redirect Logs":["Redirect Logs"],"I'm a nice person and I have helped support the author of this plugin":["I'm a nice person and I have helped support the author of this plugin"],"Plugin Support":["Plugin Support"],"Options":["Options"],"Two months":["Two months"],"A month":["A month"],"A week":["A week"],"A day":["A day"],"No logs":["No logs"],"Delete All":["Delete All"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."],"Add Group":["Add Group"],"Search":["Search"],"Groups":["Groups"],"Save":["Save"],"Group":["Group"],"Match":["Match"],"Add new redirection":["Add new redirection"],"Cancel":["Cancel"],"Download":["Download"],"Redirection":["Redirection"],"Settings":["Settings"],"Do nothing":["Do nothing"],"Error (404)":["Error (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Redirect to random post"],"Redirect to URL":["Redirect to URL"],"Invalid group when creating redirect":["Invalid group when creating redirect"],"Show only this IP":["Show only this IP"],"IP":["IP"],"Source URL":["Source URL"],"Date":["Date"],"Add Redirect":["Add Redirect"],"All modules":["All modules"],"View Redirects":["View Redirects"],"Module":["Module"],"Redirects":["Redirects"],"Name":["Name"],"Filter":["Filter"],"Reset hits":["Reset hits"],"Enable":["Enable"],"Disable":["Disable"],"Delete":["Delete"],"Edit":["Edit"],"Last Access":["Last Access"],"Hits":["Hits"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Modified Posts"],"Redirections":["Redirections"],"User Agent":["User Agent"],"URL and user agent":["URL and user agent"],"Target URL":["Target URL"],"URL only":["URL only"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL and referrer"],"Logged Out":["Logged Out"],"Logged In":["Logged In"],"URL and login status":["URL and login status"]}
locale/json/redirection-es_ES.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-11-18 17:39:13+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"es","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,"https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,"La documentación completa para Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}:"],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,"Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,"Si quieres enviar información y no quieres que se incluya en un repositorio público, envíala directamente por {{email}}correo electrónico{{/email}} - ¡incluye toda la información que puedas!"],"Never cache":[null,"No cachear nunca"],"An hour":[null,"Una hora"],"Redirect Cache":[null,"Redireccionar caché"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,"Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"],"Are you sure you want to import from %s?":[null,"¿Estás seguro de querer importar de %s?"],"Plugin Importers":[null,"Importadores de plugins"],"The following redirect plugins were detected on your site and can be imported from.":[null,"Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."],"total = ":[null,"total = "],"Import from %s":[null,"Importar de %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,"Se han detectado problemas en las tablas de tu base de datos. Por favor, visita la <a href=\"%s\">página de soporte</a> para más detalles."],"Redirection not installed properly":[null,"Redirection no está instalado correctamente"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,"Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"],"Default WordPress \"old slugs\"":[null,"\"Viejos slugs\" por defecto de WordPress"],"Create associated redirect (added to end of URL)":[null,"Crea una redirección asociada (añadida al final de la URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,"<code>Redirectioni10n</code> no está definido. Esto normalmente significa que otro plugin está impidiendo que cargue Redirection. Por favor, desactiva todos los plugins e inténtalo de nuevo."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,"Si no funciona el botón mágico entonces deberías leer el error y ver si puedes arreglarlo manualmente, o sino seguir la sección 'Necesito ayuda' de abajo."],"⚡️ Magic fix ⚡️":[null,"⚡️ Arreglo mágico ⚡️"],"Plugin Status":[null,"Estado del plugin"],"Custom":[null,"Personalizado"],"Mobile":[null,"Móvil"],"Feed Readers":[null,"Lectores de feeds"],"Libraries":[null,"Bibliotecas"],"URL Monitor Changes":[null,"Monitorizar el cambio de URL"],"Save changes to this group":[null,"Guardar los cambios de este grupo"],"For example \"/amp\"":[null,"Por ejemplo \"/amp\""],"URL Monitor":[null,"Monitorear URL"],"Monitor changes to pages":[null,"Monitorea cambios en las páginas"],"Monitor trashed items (will create disabled redirects)":[null,"Monitorea elementos de la papelera (creará redirecciones desactivadas) "],"Delete 404s":[null,"Borrar 404s"],"Delete all logs for this 404":[null,"Borra todos los registros de este 404"],"Delete all from IP %s":[null,"Borra todo de la IP %s"],"Delete all matching \"%s\"":[null,"Borra todo lo que tenga \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,"El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."],"Also check if your browser is able to load <code>redirection.js</code>:":[null,"También comprueba si tu navegador puede cargar <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,"Si estás usando un plugin o servicio (CloudFlare, OVH, etc.) de caché de página entonces también puedes probar a vaciar la caché."],"Unable to load Redirection":[null,"No ha sido posible cargar Redirection"],"Unable to create group":[null,"No fue posible crear el grupo"],"Failed to fix database tables":[null,"Fallo al reparar las tablas de la base de datos"],"Post monitor group is valid":[null,"El grupo de monitoreo de entradas es válido"],"Post monitor group is invalid":[null,"El grupo de monitoreo de entradas no es válido"],"Post monitor group":[null,"Grupo de monitoreo de entradas"],"All redirects have a valid group":[null,"Todas las redirecciones tienen un grupo válido"],"Redirects with invalid groups detected":[null,"Detectadas redirecciones con grupos no válidos"],"Valid redirect group":[null,"Grupo de redirección válido"],"Valid groups detected":[null,"Detectados grupos válidos"],"No valid groups, so you will not be able to create any redirects":[null,"No hay grupos válidos, así que no podrás crear redirecciones"],"Valid groups":[null,"Grupos válidos"],"Database tables":[null,"Tablas de la base de datos"],"The following tables are missing:":[null,"Faltan las siguientes tablas:"],"All tables present":[null,"Están presentes todas las tablas"],"Cached Redirection detected":[null,"Detectada caché de Redirection"],"Please clear your browser cache and reload this page.":[null,"Por favor, vacía la caché de tu navegador y recarga esta página"],"The data on this page has expired, please reload.":[null,"Los datos de esta página han caducado, por favor, recarga."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,"WordPress no ha devuelto una respuesta. Esto podría significar que ocurrió un error o que la petición se bloqueó. Por favor, revisa el error_log de tu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,"Tu servidor devolvió un error de 403 Prohibido, que podría indicar que se bloqueó la petición. ¿Estás usando un cortafuegos o un plugin de seguridad?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,"WordPress ha devuelto un mensaje inesperado. Esto normalmente indica que un plugin o tema está extrayendo datos cuando no debería. Por favor, trata de desactivar el resto de plugins e inténtalo de nuevo."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,"Si no se sabe cuál es el problema entonces trata de desactivar el resto de plugins - es fácil de hacer, y puedes reactivarlos rápidamente. Otros plugins pueden, a veces, provocar conflictos."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,"Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":[null,"Si crees que es un fallo de Redirection entonces envía un aviso de problema."],"This may be caused by another plugin - look at your browser's error console for more details.":[null,"Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."],"Loading, please wait...":[null,"Cargando, por favor espera…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,"{{strong}}formato de archivo CSV{{/strong}}: {{code}}URL de origen, URL de destino{{/code}} - y puede añadirse opcionalmente {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 para no, 1 para sí)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,"La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,"Si eso no ayuda abre la consola de errores de tu navegador y crea un {{link}}aviso de problema nuevo{{/link}} con los detalles."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,"Si es un problema nuevo entonces, por favor, o {{strong}}crea un aviso de nuevo problema{{/strong}} o envía un {{strong}}correo electrónico{{/strong}}. Incluye una descripción de lo que estabas tratando de hacer y de los importantes detalles listados abajo. Por favor, incluye una captura de pantalla."],"Create Issue":[null,"Crear aviso de problema"],"Email":[null,"Correo electrónico"],"Important details":[null,"Detalles importantes"],"Need help?":[null,"¿Necesitas ayuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,"Por favor, date cuenta de que todo soporte se ofrece sobre la base del tiempo disponible y no está garantizado. No ofrezco soporte de pago."],"Pos":[null,"Pos"],"410 - Gone":[null,"410 - Desaparecido"],"Position":[null,"Posición"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,"Se usa para generar automáticamente una URL si no se ofrece una URL. Utiliza las etiquetas especiales {{code}}$dec${{/code}} o {{code}}$hex${{/code}} para insertar un ID único insertado"],"Apache Module":[null,"Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,"Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."],"Import to group":[null,"Importar a un grupo"],"Import a CSV, .htaccess, or JSON file.":[null,"Importa un archivo CSV, .htaccess o JSON."],"Click 'Add File' or drag and drop here.":[null,"Haz clic en 'Añadir archivo' o arrastra y suelta aquí."],"Add File":[null,"Añadir archivo"],"File selected":[null,"Archivo seleccionado"],"Importing":[null,"Importando"],"Finished importing":[null,"Importación finalizada"],"Total redirects imported:":[null,"Total de redirecciones importadas:"],"Double-check the file is the correct format!":[null,"¡Vuelve a comprobar que el archivo esté en el formato correcto!"],"OK":[null,"Aceptar"],"Close":[null,"Cerrar"],"All imports will be appended to the current database.":[null,"Todas las importaciones se añadirán a la base de datos actual."],"Export":[null,"Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,"Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."],"Everything":[null,"Todo"],"WordPress redirects":[null,"Redirecciones WordPress"],"Apache redirects":[null,"Redirecciones Apache"],"Nginx redirects":[null,"Redirecciones Nginx"],"CSV":[null,"CSV"],"Apache .htaccess":[null,".htaccess de Apache"],"Nginx rewrite rules":[null,"Reglas de rewrite de Nginx"],"Redirection JSON":[null,"JSON de Redirection"],"View":[null,"Ver"],"Log files can be exported from the log pages.":[null,"Los archivos de registro se pueden exportar desde las páginas de registro."],"Import/Export":[null,"Importar/Exportar"],"Logs":[null,"Registros"],"404 errors":[null,"Errores 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,"Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"],"I'd like to support some more.":[null,"Me gustaría dar algo más de apoyo."],"Support 💰":[null,"Apoyar 💰"],"Redirection saved":[null,"Redirección guardada"],"Log deleted":[null,"Registro borrado"],"Settings saved":[null,"Ajustes guardados"],"Group saved":[null,"Grupo guardado"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","¿Estás seguro de querer borrar este elemento?","¿Estás seguro de querer borrar estos elementos?"],"pass":[null,"pass"],"All groups":[null,"Todos los grupos"],"301 - Moved Permanently":[null,"301 - Movido permanentemente"],"302 - Found":[null,"302 - Encontrado"],"307 - Temporary Redirect":[null,"307 - Redirección temporal"],"308 - Permanent Redirect":[null,"308 - Redirección permanente"],"401 - Unauthorized":[null,"401 - No autorizado"],"404 - Not Found":[null,"404 - No encontrado"],"Title":[null,"Título"],"When matched":[null,"Cuando coincide"],"with HTTP code":[null,"con el código HTTP"],"Show advanced options":[null,"Mostrar opciones avanzadas"],"Matched Target":[null,"Objetivo coincidente"],"Unmatched Target":[null,"Objetivo no coincidente"],"Saving...":[null,"Guardando…"],"View notice":[null,"Ver aviso"],"Invalid source URL":[null,"URL de origen no válida"],"Invalid redirect action":[null,"Acción de redirección no válida"],"Invalid redirect matcher":[null,"Coincidencia de redirección no válida"],"Unable to add new redirect":[null,"No ha sido posible añadir la nueva redirección"],"Something went wrong 🙁":[null,"Algo fue mal 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un problema temporal, y si lo intentas hacer de nuevo puede que funcione - ¡genial! "],"It didn't work when I tried again":[null,"No funcionó al intentarlo de nuevo"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"Revisa si tu problema está descrito en la lista de habituales {{link}}problemas con Redirection{{/link}}. Por favor, añade más detalles si encuentras el mismo problema."],"Log entries (%d max)":[null,"Entradas del registro (máximo %d)"],"Search by IP":[null,"Buscar por IP"],"Select bulk action":[null,"Elegir acción en lote"],"Bulk Actions":[null,"Acciones en lote"],"Apply":[null,"Aplicar"],"First page":[null,"Primera página"],"Prev page":[null,"Página anterior"],"Current Page":[null,"Página actual"],"of %(page)s":[null,"de %(página)s"],"Next page":[null,"Página siguiente"],"Last page":[null,"Última página"],"%s item":["%s items","%s elemento","%s elementos"],"Select All":[null,"Elegir todos"],"Sorry, something went wrong loading the data - please try again":[null,"Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"],"No results":[null,"No hay resultados"],"Delete the logs - are you sure?":[null,"Borrar los registros - ¿estás seguro?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"Una vez se borren tus registros actuales ya no estarán disponibles. Puedes configurar una programación de borrado desde las opciones de Redirection si quieres hacer esto automáticamente."],"Yes! Delete the logs":[null,"¡Sí! Borra los registros"],"No! Don't delete the logs":[null,"¡No! No borres los registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."],"Newsletter":[null,"Boletín"],"Want to keep up to date with changes to Redirection?":[null,"¿Quieres estar al día de los cambios en Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Regístrate al pequeño boletín de Redirection - un boletín liviano sobre las nuevas funcionalidades y cambios en el plugin. Ideal si quieres probar los cambios de la versión beta antes de su lanzamiento."],"Your email address:":[null,"Tu dirección de correo electrónico:"],"You've supported this plugin - thank you!":[null,"Ya has apoyado a este plugin - ¡gracias!"],"You get useful software and I get to carry on making it better.":[null,"Tienes un software útil y yo seguiré haciéndolo mejor."],"Forever":[null,"Siempre"],"Delete the plugin - are you sure?":[null,"Borrar el plugin - ¿estás seguro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."],"Yes! Delete the plugin":[null,"¡Sí! Borrar el plugin"],"No! Don't delete the plugin":[null,"¡No! No borrar el plugin"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Redirection se puede usar gratis - ¡La vida es maravillosa y encantadora! Sin embargo, ha requerido una gran cantidad de tiempo y esfuerzo desarrollarlo y, si te ha sido útil, puedes ayudar a este desarrollo {{strong}}haciendo una pequeña donación{{/strong}}. "],"Support":[null,"Soporte"],"404s":[null,"404s"],"Log":[null,"Log"],"Delete Redirection":[null,"Borrar Redirection"],"Upload":[null,"Subir"],"Import":[null,"Importar"],"Update":[null,"Actualizar"],"Auto-generate URL":[null,"Auto generar URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Un token único que permite acceso de los lectores de feeds a los registros RSS de Redirection (déjalo en blanco para que se genere automáticamente)"],"RSS Token":[null,"Token RSS"],"Monitor changes to posts":[null,"Monitorizar cambios en entradas"],"404 Logs":[null,"Registros 404"],"(time to keep logs for)":[null,"(tiempo que se mantendrán los registros)"],"Redirect Logs":[null,"Registros de redirecciones"],"I'm a nice person and I have helped support the author of this plugin":[null,"Soy una buena persona y ayude al autor de este plugin"],"Plugin Support":[null,"Soporte del plugin"],"Options":[null,"Opciones"],"Two months":[null,"Dos meses"],"A month":[null,"Un mes"],"A week":[null,"Una semana"],"A day":[null,"Un dia"],"No logs":[null,"No hay logs"],"Delete All":[null,"Borrar todo"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Utiliza grupos para organizar tus redirecciones. Los grupos se asignan a un módulo, lo cual afecta a cómo se realizan las redirecciones en ese grupo. Si no estás seguro entonces utiliza el módulo WordPress."],"Add Group":[null,"Añadir grupo"],"Search":[null,"Buscar"],"Groups":[null,"Grupos"],"Save":[null,"Guardar"],"Group":[null,"Grupo"],"Match":[null,"Coincidencia"],"Add new redirection":[null,"Añadir nueva redirección"],"Cancel":[null,"Cancelar"],"Download":[null,"Descargar"],"Redirection":[null,"Redirection"],"Settings":[null,"Ajustes"],"Do nothing":[null,"No hacer nada"],"Error (404)":[null,"Error (404)"],"Pass-through":[null,"Pasar directo"],"Redirect to random post":[null,"Redirigir a entrada aleatoria"],"Redirect to URL":[null,"Redirigir a URL"],"Invalid group when creating redirect":[null,"Grupo no válido a la hora de crear la redirección"],"Show only this IP":[null,"Mostrar sólo esta IP"],"IP":[null,"IP"],"Source URL":[null,"URL origen"],"Date":[null,"Fecha"],"Add Redirect":[null,"Añadir redirección"],"All modules":[null,"Todos los módulos"],"View Redirects":[null,"Ver redirecciones"],"Module":[null,"Módulo"],"Redirects":[null,"Redirecciones"],"Name":[null,"Nombre"],"Filter":[null,"Filtro"],"Reset hits":[null,"Restablecer aciertos"],"Enable":[null,"Habilitar"],"Disable":[null,"Desactivar"],"Delete":[null,"Eliminar"],"Edit":[null,"Editar"],"Last Access":[null,"Último acceso"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Tipo"],"Modified Posts":[null,"Entradas modificadas"],"Redirections":[null,"Redirecciones"],"User Agent":[null,"Agente usuario HTTP"],"URL and user agent":[null,"URL y cliente de usuario (user agent)"],"Target URL":[null,"URL destino"],"URL only":[null,"Sólo URL"],"Regex":[null,"Expresión regular"],"Referrer":[null,"Referente"],"URL and referrer":[null,"URL y referente"],"Logged Out":[null,"Desconectado"],"Logged In":[null,"Conectado"],"URL and login status":[null,"Estado de URL y conexión"]}
1
+ {"":[],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["La documentación completa para Redirection está en {{site}}https://redirection.me{{/site}}. Si tienes algún problema, por favor revisa primero las {{faq}}FAQ{{/faq}}:"],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Si quieres informar de un fallo, por favor lee la guía {{report}}Informando de fallos{{/report}}"],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Si quieres enviar información y no quieres que se incluya en un repositorio público, envíala directamente por {{email}}correo electrónico{{/email}} - ¡incluye toda la información que puedas!"],"Never cache":["No cachear nunca"],"An hour":["Una hora"],"Redirect Cache":["Redireccionar caché"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Cuánto tiempo cachear URLs con redirección 301 (mediante la cabecera HTTP \"Expires\")"],"Are you sure you want to import from %s?":["¿Estás seguro de querer importar de %s?"],"Plugin Importers":["Importadores de plugins"],"The following redirect plugins were detected on your site and can be imported from.":["Se han detectado los siguientes plugins de redirección en tu sitio y se puede importar desde ellos."],"total = ":["total = "],"Import from %s":["Importar de %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Se han detectado problemas en las tablas de tu base de datos. Por favor, visita la <a href=\"%s\">página de soporte</a> para más detalles."],"Redirection not installed properly":["Redirection no está instalado correctamente"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection requiere WordPress v%1s, estás usando v%2s - por favor, actualiza tu WordPress"],"Default WordPress \"old slugs\"":["\"Viejos slugs\" por defecto de WordPress"],"Create associated redirect (added to end of URL)":["Crea una redirección asociada (añadida al final de la URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> no está definido. Esto normalmente significa que otro plugin está impidiendo que cargue Redirection. Por favor, desactiva todos los plugins e inténtalo de nuevo."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Si no funciona el botón mágico entonces deberías leer el error y ver si puedes arreglarlo manualmente, o sino seguir la sección 'Necesito ayuda' de abajo."],"⚡️ Magic fix ⚡️":["⚡️ Arreglo mágico ⚡️"],"Plugin Status":["Estado del plugin"],"Custom":["Personalizado"],"Mobile":["Móvil"],"Feed Readers":["Lectores de feeds"],"Libraries":["Bibliotecas"],"URL Monitor Changes":["Monitorizar el cambio de URL"],"Save changes to this group":["Guardar los cambios de este grupo"],"For example \"/amp\"":["Por ejemplo \"/amp\""],"URL Monitor":["Monitorear URL"],"Monitor changes to pages":["Monitorea cambios en las páginas"],"Monitor trashed items (will create disabled redirects)":["Monitorea elementos de la papelera (creará redirecciones desactivadas) "],"Delete 404s":["Borrar 404s"],"Delete all logs for this 404":["Borra todos los registros de este 404"],"Delete all from IP %s":["Borra todo de la IP %s"],"Delete all matching \"%s\"":["Borra todo lo que tenga \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["El servidor rechazó la petición por ser demasiado grande. Necesitarás cambiarla antes de continuar."],"Also check if your browser is able to load <code>redirection.js</code>:":["También comprueba si tu navegador puede cargar <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Si estás usando un plugin o servicio (CloudFlare, OVH, etc.) de caché de página entonces también puedes probar a vaciar la caché."],"Unable to load Redirection":["No ha sido posible cargar Redirection"],"Unable to create group":["No fue posible crear el grupo"],"Failed to fix database tables":["Fallo al reparar las tablas de la base de datos"],"Post monitor group is valid":["El grupo de monitoreo de entradas es válido"],"Post monitor group is invalid":["El grupo de monitoreo de entradas no es válido"],"Post monitor group":["Grupo de monitoreo de entradas"],"All redirects have a valid group":["Todas las redirecciones tienen un grupo válido"],"Redirects with invalid groups detected":["Detectadas redirecciones con grupos no válidos"],"Valid redirect group":["Grupo de redirección válido"],"Valid groups detected":["Detectados grupos válidos"],"No valid groups, so you will not be able to create any redirects":["No hay grupos válidos, así que no podrás crear redirecciones"],"Valid groups":["Grupos válidos"],"Database tables":["Tablas de la base de datos"],"The following tables are missing:":["Faltan las siguientes tablas:"],"All tables present":["Están presentes todas las tablas"],"Cached Redirection detected":["Detectada caché de Redirection"],"Please clear your browser cache and reload this page.":["Por favor, vacía la caché de tu navegador y recarga esta página"],"The data on this page has expired, please reload.":["Los datos de esta página han caducado, por favor, recarga."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress no ha devuelto una respuesta. Esto podría significar que ocurrió un error o que la petición se bloqueó. Por favor, revisa el error_log de tu servidor."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":["Tu servidor devolvió un error de 403 Prohibido, que podría indicar que se bloqueó la petición. ¿Estás usando un cortafuegos o un plugin de seguridad?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress ha devuelto un mensaje inesperado. Esto normalmente indica que un plugin o tema está extrayendo datos cuando no debería. Por favor, trata de desactivar el resto de plugins e inténtalo de nuevo."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Si no se sabe cuál es el problema entonces trata de desactivar el resto de plugins - es fácil de hacer, y puedes reactivarlos rápidamente. Otros plugins pueden, a veces, provocar conflictos."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Incluye estos detalles en tu informe {strong}}junto con una descripción de lo que estabas haciendo{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Si crees que es un fallo de Redirection entonces envía un aviso de problema."],"This may be caused by another plugin - look at your browser's error console for more details.":["Esto podría estar provocado por otro plugin - revisa la consola de errores de tu navegador para más detalles."],"Loading, please wait...":["Cargando, por favor espera…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}formato de archivo CSV{{/strong}}: {{code}}URL de origen, URL de destino{{/code}} - y puede añadirse opcionalmente {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 para no, 1 para sí)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["La redirección no está funcionando. Trata de vaciar la caché de tu navegador y recarga esta página."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Si eso no ayuda abre la consola de errores de tu navegador y crea un {{link}}aviso de problema nuevo{{/link}} con los detalles."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Si es un problema nuevo entonces, por favor, o {{strong}}crea un aviso de nuevo problema{{/strong}} o envía un {{strong}}correo electrónico{{/strong}}. Incluye una descripción de lo que estabas tratando de hacer y de los importantes detalles listados abajo. Por favor, incluye una captura de pantalla."],"Create Issue":["Crear aviso de problema"],"Email":["Correo electrónico"],"Important details":["Detalles importantes"],"Need help?":["¿Necesitas ayuda?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Por favor, date cuenta de que todo soporte se ofrece sobre la base del tiempo disponible y no está garantizado. No ofrezco soporte de pago."],"Pos":["Pos"],"410 - Gone":["410 - Desaparecido"],"Position":["Posición"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":["Se usa para generar automáticamente una URL si no se ofrece una URL. Utiliza las etiquetas especiales {{code}}$dec${{/code}} o {{code}}$hex${{/code}} para insertar un ID único insertado"],"Apache Module":["Módulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Introduce la ruta completa y el nombre del archivo si quieres que Redirection actualice automáticamente tu {{code}}.htaccess{{/code}}."],"Import to group":["Importar a un grupo"],"Import a CSV, .htaccess, or JSON file.":["Importa un archivo CSV, .htaccess o JSON."],"Click 'Add File' or drag and drop here.":["Haz clic en 'Añadir archivo' o arrastra y suelta aquí."],"Add File":["Añadir archivo"],"File selected":["Archivo seleccionado"],"Importing":["Importando"],"Finished importing":["Importación finalizada"],"Total redirects imported:":["Total de redirecciones importadas:"],"Double-check the file is the correct format!":["¡Vuelve a comprobar que el archivo esté en el formato correcto!"],"OK":["Aceptar"],"Close":["Cerrar"],"All imports will be appended to the current database.":["Todas las importaciones se añadirán a la base de datos actual."],"Export":["Exportar"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exporta a CSV, .htaccess de Apache, Nginx o JSON de Redirection (que contenga todas las redirecciones y grupos)."],"Everything":["Todo"],"WordPress redirects":["Redirecciones WordPress"],"Apache redirects":["Redirecciones Apache"],"Nginx redirects":["Redirecciones Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess de Apache"],"Nginx rewrite rules":["Reglas de rewrite de Nginx"],"Redirection JSON":["JSON de Redirection"],"View":["Ver"],"Log files can be exported from the log pages.":["Los archivos de registro se pueden exportar desde las páginas de registro."],"Import/Export":["Importar/Exportar"],"Logs":["Registros"],"404 errors":["Errores 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Por favor, menciona {{code}}%s{{/code}}, y explica lo que estabas haciendo en ese momento"],"I'd like to support some more.":["Me gustaría dar algo más de apoyo."],"Support 💰":["Apoyar 💰"],"Redirection saved":["Redirección guardada"],"Log deleted":["Registro borrado"],"Settings saved":["Ajustes guardados"],"Group saved":["Grupo guardado"],"Are you sure you want to delete this item?":["¿Estás seguro de querer borrar este elemento?","¿Estás seguro de querer borrar estos elementos?"],"pass":["pass"],"All groups":["Todos los grupos"],"301 - Moved Permanently":["301 - Movido permanentemente"],"302 - Found":["302 - Encontrado"],"307 - Temporary Redirect":["307 - Redirección temporal"],"308 - Permanent Redirect":["308 - Redirección permanente"],"401 - Unauthorized":["401 - No autorizado"],"404 - Not Found":["404 - No encontrado"],"Title":["Título"],"When matched":["Cuando coincide"],"with HTTP code":["con el código HTTP"],"Show advanced options":["Mostrar opciones avanzadas"],"Matched Target":["Objetivo coincidente"],"Unmatched Target":["Objetivo no coincidente"],"Saving...":["Guardando…"],"View notice":["Ver aviso"],"Invalid source URL":["URL de origen no válida"],"Invalid redirect action":["Acción de redirección no válida"],"Invalid redirect matcher":["Coincidencia de redirección no válida"],"Unable to add new redirect":["No ha sido posible añadir la nueva redirección"],"Something went wrong 🙁":["Algo fue mal 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Estaba tratando de hacer algo cuando ocurrió un fallo. Puede ser un problema temporal, y si lo intentas hacer de nuevo puede que funcione - ¡genial! "],"It didn't work when I tried again":["No funcionó al intentarlo de nuevo"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Revisa si tu problema está descrito en la lista de habituales {{link}}problemas con Redirection{{/link}}. Por favor, añade más detalles si encuentras el mismo problema."],"Log entries (%d max)":["Entradas del registro (máximo %d)"],"Search by IP":["Buscar por IP"],"Select bulk action":["Elegir acción en lote"],"Bulk Actions":["Acciones en lote"],"Apply":["Aplicar"],"First page":["Primera página"],"Prev page":["Página anterior"],"Current Page":["Página actual"],"of %(page)s":["de %(página)s"],"Next page":["Página siguiente"],"Last page":["Última página"],"%s item":["%s elemento","%s elementos"],"Select All":["Elegir todos"],"Sorry, something went wrong loading the data - please try again":["Lo siento, pero algo fue mal al cargar los datos - por favor, inténtalo de nuevo"],"No results":["No hay resultados"],"Delete the logs - are you sure?":["Borrar los registros - ¿estás seguro?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Una vez se borren tus registros actuales ya no estarán disponibles. Puedes configurar una programación de borrado desde las opciones de Redirection si quieres hacer esto automáticamente."],"Yes! Delete the logs":["¡Sí! Borra los registros"],"No! Don't delete the logs":["¡No! No borres los registros"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["¡Gracias por suscribirte! {{a}}Haz clic aquí{{/a}} si necesitas volver a tu suscripción."],"Newsletter":["Boletín"],"Want to keep up to date with changes to Redirection?":["¿Quieres estar al día de los cambios en Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Regístrate al pequeño boletín de Redirection - un boletín liviano sobre las nuevas funcionalidades y cambios en el plugin. Ideal si quieres probar los cambios de la versión beta antes de su lanzamiento."],"Your email address:":["Tu dirección de correo electrónico:"],"You've supported this plugin - thank you!":["Ya has apoyado a este plugin - ¡gracias!"],"You get useful software and I get to carry on making it better.":["Tienes un software útil y yo seguiré haciéndolo mejor."],"Forever":["Siempre"],"Delete the plugin - are you sure?":["Borrar el plugin - ¿estás seguro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Al borrar el plugin se eliminarán todas tus redirecciones, registros y ajustes. Haz esto si estás seguro de que quieres borrar el plugin, o si quieres restablecer el plugin. "],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Una vez borres tus redirecciones dejarán de funcionar. Si parece que siguen funcionando entonces, por favor, vacía la caché de tu navegador."],"Yes! Delete the plugin":["¡Sí! Borrar el plugin"],"No! Don't delete the plugin":["¡No! No borrar el plugin"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gestiona todas tus redirecciones 301 y monitoriza tus errores 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection se puede usar gratis - ¡La vida es maravillosa y encantadora! Sin embargo, ha requerido una gran cantidad de tiempo y esfuerzo desarrollarlo y, si te ha sido útil, puedes ayudar a este desarrollo {{strong}}haciendo una pequeña donación{{/strong}}. "],"Support":["Soporte"],"404s":["404s"],"Log":["Log"],"Delete Redirection":["Borrar Redirection"],"Upload":["Subir"],"Import":["Importar"],"Update":["Actualizar"],"Auto-generate URL":["Auto generar URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un token único que permite acceso de los lectores de feeds a los registros RSS de Redirection (déjalo en blanco para que se genere automáticamente)"],"RSS Token":["Token RSS"],"Monitor changes to posts":["Monitorizar cambios en entradas"],"404 Logs":["Registros 404"],"(time to keep logs for)":["(tiempo que se mantendrán los registros)"],"Redirect Logs":["Registros de redirecciones"],"I'm a nice person and I have helped support the author of this plugin":["Soy una buena persona y ayude al autor de este plugin"],"Plugin Support":["Soporte del plugin"],"Options":["Opciones"],"Two months":["Dos meses"],"A month":["Un mes"],"A week":["Una semana"],"A day":["Un dia"],"No logs":["No hay logs"],"Delete All":["Borrar todo"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utiliza grupos para organizar tus redirecciones. Los grupos se asignan a un módulo, lo cual afecta a cómo se realizan las redirecciones en ese grupo. Si no estás seguro entonces utiliza el módulo WordPress."],"Add Group":["Añadir grupo"],"Search":["Buscar"],"Groups":["Grupos"],"Save":["Guardar"],"Group":["Grupo"],"Match":["Coincidencia"],"Add new redirection":["Añadir nueva redirección"],"Cancel":["Cancelar"],"Download":["Descargar"],"Redirection":["Redirection"],"Settings":["Ajustes"],"Do nothing":["No hacer nada"],"Error (404)":["Error (404)"],"Pass-through":["Pasar directo"],"Redirect to random post":["Redirigir a entrada aleatoria"],"Redirect to URL":["Redirigir a URL"],"Invalid group when creating redirect":["Grupo no válido a la hora de crear la redirección"],"Show only this IP":["Mostrar sólo esta IP"],"IP":["IP"],"Source URL":["URL origen"],"Date":["Fecha"],"Add Redirect":["Añadir redirección"],"All modules":["Todos los módulos"],"View Redirects":["Ver redirecciones"],"Module":["Módulo"],"Redirects":["Redirecciones"],"Name":["Nombre"],"Filter":["Filtro"],"Reset hits":["Restablecer aciertos"],"Enable":["Habilitar"],"Disable":["Desactivar"],"Delete":["Eliminar"],"Edit":["Editar"],"Last Access":["Último acceso"],"Hits":["Hits"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Entradas modificadas"],"Redirections":["Redirecciones"],"User Agent":["Agente usuario HTTP"],"URL and user agent":["URL y cliente de usuario (user agent)"],"Target URL":["URL destino"],"URL only":["Sólo URL"],"Regex":["Expresión regular"],"Referrer":["Referente"],"URL and referrer":["URL y referente"],"Logged Out":["Desconectado"],"Logged In":["Conectado"],"URL and login status":["Estado de URL y conexión"]}
locale/json/redirection-fa_IR.json DELETED
@@ -1 +0,0 @@
1
- {"404":[null,"۴۰۴"],"":{"project-id-version":"Persian Redirection Plugin","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2012-05-07 13:59:00+00:00","po-revision-date":"2014-08-04 16:40+0330","last-translator":"Danial Hatami <great.emperor94@gmail.com>","language-team":"Danial Hatami <hi@chamrosh.ir>","language":"fa_IR","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-sourcecharset":"UTF-8","x-poedit-keywordslist":"__;_e;__ ;_e","x-poedit-basepath":".","x-generator":"Poedit 1.6.5","plural-forms":"nplurals=1; plural=0;"},"Sorry, but your redirection was not created":[null,"متاسفیم ٬ اما تغییر مسیر شما ایجاد نشده است ."],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s درون ریزی شده در %s در %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"درون ریزی XML تنها در نسخه PHP5 امکان پذیر است و شما از نسخه PHP4 استفاده می‌کنید."],"URL and login status":[null,"نشانی و وضعیت ورودی"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"نشانی هدف از یکی از نشانی های زیر انتخاب می‌شود و بستگی به این دارد که کاربر وارد شده باشد یا خیر. خالی گذاشتن نشانی به معنای عدم تغییر مسیر کاربر است !"],"Logged In":[null,"وارد شده"],"Logged Out":[null,"خارج شده"],"URL and referrer":[null,"نشانی و ارجاع دهنده"],"Referrer":[null,"مرجع"],"Regex":[null,"عبارت منظم"],"HTTP Code":[null,"کد HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"بازدید کننده در صورت تطابق نشانی منبع تغییر مسیر داده می‌شود شما می‌توانید یک نشانی هدف برای تطابق یا عدم تطابق برای بازدیدکننده تعیین کنید و در صورت خالی بودن نشانی بازدیدکننده تغییر مسیر نمی‌دهد."],"Matched":[null,"همسان"],"Not matched":[null,"عدم تطابق"],"URL only":[null,"فقط نشانی"],"Target URL":[null,"URL هدف"],"URL and user agent":[null,"نشانی و عامل کاربری"],"FeedBurner":[null,"فید برنر"],"Internet Explorer":[null,"اینترنت اکسپلورر"],"FireFox":[null,"فایرفاکس"],"Opera":[null,"اپرا"],"Safari":[null,"سفری"],"iPhone":[null,"آی‌فون"],"iPad":[null,"آی‌پاد"],"Android":[null,"آندروید"],"Nintendo Wii":[null,"نینتندو"],"User Agent":[null,"User Agent"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"بازدید کننده در صورت تطابق عامل کاربری تغییر مسیر داده می‌شود شما می‌توانید یک نشانی هدف برای تطابق یا عدم تطابق برای بازدیدکننده تعیین کنید و در صورت خالی بودن نشانی بازدیدکننده تغییر مسیر نمی‌دهد. تمام مطابق‌ها به عنوان عبارت های منظم انجام می‌شوند .\n"],"WordPress":[null,"وردپرس"],"Apache":[null,"آپاچی"],"Redirections":[null,"تغییر مسیرها"],"Modified Posts":[null,"نوشته‌های اصلاح‌یافته"],"Yes":[null,"بله"],"No":[null,"خیر"],"404 Errors":[null,"خطاهای ۴۰۴"],"Strip WWW":[null,"حذف www"],"Force WWW":[null,"اعمال www"],"Strip index.php":[null,"برهنه‌سازی index.php"],"Previous":[null,"قبلی"],"Next":[null,"بعدی"],"%d per-page":[null,"%d در هر برگه"],"Displaying %s&#8211;%s of %s":[null,"نمایش %s&#8211;%s از %s"],"Redirect to URL":[null,"تغییر مسیر نشانی‌ها"],"Redirect to random post":[null,"تغییر مسیر به نوشته‌های تصادفی"],"Pass-through":[null,"Pass-through"],"Error (404)":[null,"خطای ۴۰۴"],"Do nothing":[null,"هیچ‌کاری انجام نده"],"Log 404s":[null,"گزارش‌های ۴۰۴"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>غیر فعال : شما باید نخست <a href=\"options-permalink.php\">پیوند‌های یکتا</a>را فعال کنید</strong>"],"<small>No options have been set</small>":[null,"<small>تنظیمات قرارداده نشده</small>"],"Location":[null,"محل"],"WordPress is installed in: <code>%s</code>":[null,"وردپرس در شاخه <code>%s</code> نصب شده"],"Canonical":[null,"استاندارد"],"Leave as is":[null,"ترک کردن به عنوان"],"Strip WWW (%s)":[null,"حذف WWW (%s)"],"Force WWW (www.%s)":[null,"اعمال WWW (www.%s)"],"Strip Index":[null,"برهنه کردن صفحه اصلی"],"Strip index files (html,php)":[null,"حذف پیشوند فایل اصلی (html,php)"],"Memory Limit":[null,"محدودیت حافظه"],"Server default":[null,"سرور پیشفرض"],"Error Level":[null,"خطای دسترسی"],"No errors":[null,"بدون خطا"],"Show errors":[null,"نمایش خطاها"],"Ban IPs":[null,"آی‌پی‌های مسدود‌شده"],"Allow IPs":[null,"آی‌پی‌های مجاز"],"Raw .htaccess":[null,".htaccess خام "],"Site URL":[null,"نشانی سایت"],"Advanced: For management of external sites":[null,"پیشرفته : برای مدیریت سایت‌های اکسترنال/خارجی"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>مکان نامعتبر است - از وجود داشتن مسیر اطمینان حاصل کنید</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>امکان دسترسی به <code>.htaccess</code> نیست -سطح دسترسی ها را بررسی کنید</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>غیر فعال : مکان پرونده <code>.htaccess</code> را برای معتبرسازی وارد کنید.</strong>"],"strip WWW":[null,"بدون WWW"],"force WWW":[null,"بدون WWW"],"strip index":[null,"برهنه سازی صفحه اصلی"],"memory limit at %dMB":[null,"میزان حافظه %d مگابایت"],"no errors":[null,"بدون خطا"],"show errors":[null,"نمایش خطاها"],"IPs are banned":[null,"آی‌پی ها مسدود شدند"],"IPs are allowed":[null,"آی‌پی‌های مجاز شده"],"Settings":[null,"تنظیمات"],"Please wait...":[null,"لطفا صبور باشید .."],"Are you sure?":[null,"هل انت متأكد؟"],"No items have been selected":[null,"موردی انتخاب نشده"],"Redirection":[null,"تغییر مسیر"],"Your module was successfully created":[null,"ماژول با موفقیت ساخته شد"],"Your module was not created - did you provide a name?":[null,"ماژول ایجاد نشد ! آیا اسمی گزینش کردید ؟"],"Your options were updated":[null,"تنظیمات با موفقیت به‌روز شد"],"Redirection data has been deleted and the plugin disabled":[null,"اطلاعات پاک شد و افزونه غیر فعال !"],"%d redirection was successfully imported":["%d redirections were successfully imported",["%d تغییر مسیر با موفقیت درون‌ریزی شد"]],"No items were imported":[null,"موردی درون ریزی نشد"],"Your logs have been deleted":[null,"گزارش‌های شما پاک شدند"],"Your group was added successfully":[null,"گروه افزوده شد"],"Please specify a group name":[null,"لطفا یک نام برای گروه انتخاب کنید"],"Redirection is available in":[null,"تغییر مسیر در دسترس است در"],"Add new redirection":[null,"افزودن تغییر مسیر تازه"],"Your redirection has been added.":[null,"تغییر مسیر شما افزوده شد."],"Source URL":[null,"نشانی اصلی"],"Match":[null,"تطابق"],"Action":[null,"فعالیت"],"Regular expression":[null,"عبارت منظم"],"Group":[null,"گروه"],"Add Redirection":[null,"افزودن"],"Name":[null,"نام"],"Tracked":[null,"زنجیردار"],"Whether to track 'hits' to items":[null,"ایا بازدیدها به موارد زنجیر شوند"],"Enabled":[null,"فعال‌سازی"],"Disabling a group will disable all items contained within it":[null,"غیرفعال‌سازی گروه سبب غیرفعال سازی تمامی موارد شامل شده در گروه می‌شود"],"Save":[null,"دخیره سازی"],"Cancel":[null,"الغي"],"edit group":[null,"ویرایش گروه"],"disabled":[null,"غیرفعال شده"],"Groups for module":[null,"گروه های برای ماژول"],"Module":[null,"ماژول"],"Search":[null,"جستجو"],"go":[null,"برو"],"Hits":[null,"بازدیدها"],"Select All":[null,"انتخاب همه"],"Toggle":[null,"تغییر وضعیت"],"Reset Hits":[null,"بازنشانی بازدیدها"],"Delete":[null,"پاک کردن"],"Move To":[null,"انتقال به"],"Go":[null,"برو"],"re-order":[null,"چینش دوباره"],"save order":[null,"ذخیره‌سازی چینش"],"You have no groups in this module.":[null,"شما گروهی در این ماژول ندارید ."],"Add Group":[null,"افزودن گروه"],"Add":[null,"افزودن"],"%s by matching %s":[null,"%s تطابق با %s"],"Title":[null,"عنوان"],"optional":[null,"اختیاری"],"Redirections for group":[null,"تغییر مسیرها برای گروه"],"Last Access":[null,"آخرین دسترسی"],"Type":[null,"نوع"],"URL":[null,"نشانی"],"Position":[null,"حالت"],"You have no redirections.":[null,"تغییر مسیری ندارید"],"Redirection Log":[null,"گزارش‌های تغییر مسیر"],"Bulk Actions":[null,"کارهای دسته جمعی"],"Apply":[null,"اعمال"],"Filter":[null,"صافی"],"Date":[null,"تاریح"],"IP":[null,"IP"],"There are no logs to display!":[null,"گزارشی برای نمایش نیست"],"Process Current Logs":[null,"فرآیند گزارش های رایج"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"این عمل‌ها بر روی تمام گزارش‌های دردسترس تاثیر می‌گذارد !"],"Delete Logs":[null,"پاک کردن گزارش‌ها"],"Redirect to":[null,"تغییر مسیر به"],"Redirected by":[null,"تغییر مسیر داده شده به‌وسیله"],"for":[null,"برای"],"View as":[null,"مشاهده به‌عنوان"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"ویرایش"],"delete":[null,"پاک کردن"],"reset":[null,"بازنشانی"],"Modules":[null,"ماژول‌ها"],"Details":[null,"توضیحات"],"Groups":[null,"گروه‌ها"],"Items":[null,"موارد"],"Operations":[null,"عملیات‌ها"],"Note: Hits are dependant on log entries":[null,"توجه داشته باشید: تعداد بازدید ها وابسته به اطلاعات ثبت شده می باشد"],"You have no modules defined yet":[null,"شما هیچ ماژول تعریف شده‌اید ندارید"],"Add Module":[null,"افزودن ماژول"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"ماژول به عنوان یک عنصر کنترل کننده است که تعیین می‌کند تغییر مسیرها چگونه اعمال شوند. عناصر در ماژول وردپرس به‌وسیله وردپرس و در آپاچی به وسیله .htaccess و در ماژول ۴۰۴ تحت تاثیر گزارش های خطای ۴۰۴ می‌باشند."],"Create":[null,"ایجاد"],"Options":[null,"نشانی"],"Auto-generate URL":[null,"ایجاد خودکار نشانی"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"این گزینه برای ایجاد نشانی خودکار استفاده می‌شود البته اگر نشانی داده نشود ! شما می‌توانید برای شخصی سازی بیشتر از تگ‌های $dec$ یا $hex$ استفاده کنید تا یک ID یکتا داشته باشید"],"IP Lookup Service":[null,"سرویس جست‌وجوی IP"],"Plugin Support":[null,"پشتیبانی افزونه"],"I'm a nice person and I have helped support the author of this plugin":[null,"من خیلی باحالم پس نویسنده افزونه را در پشتیبانی این افزونه کمک می‌کنم !"],"Logging":[null,"ورود"],"log redirected requests":[null,"گزارش درخواست‌های تغییر مسیر"],"log 404 Not Found requests":[null,"گزارش درخواست‌های ۴۰۴ یافت نشد"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"لغو انتخاب یک یا دو مورد از گزارش گیری‌ها برای کاهش مصرف دیتابیس در صورتی که سایت شما بسیار شلوغ است و برگه‌ها اغلب یافت نمی‌شوند !"],"Expire Logs":[null,"گزارش‌های منقضی شده"],"days (enter 0 for no expiry)":[null,"روزها (برای جلوگیری از انقضا عدد 0 را وارد کنید)"],"RSS Token":[null,"نشانی آراس‌اس"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"یک نشانی یکتا که به خوانندگان امکان دسترسی به تغییر مسیر آر‌اس‌اس را می‌دهد ( برای ایجاد خودکار نشانی این زمینه را خالی رها کنید )"],"URL Monitoring":[null,"نظارت بر نشانی"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"شما می توانید داشته باشید : تشخیص تغییر مسیر تشخیص در آدرس ها و تغییر مسیر خودکار در یک گروه خاص"],"Post &amp; Page URLs":[null,"نوشته &amp; نشانی‌های برگه"],"Don't monitor":[null,"جلوگیری از نظارت"],"Monitor new posts":[null,"نظارت در نوشته‌های تازه"],"Category URLs":[null,"نشانی‌های دسته‌بندی"],"Update":[null,"حدث"],"Import":[null,"درون ریزی"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"در این قسمت شما می‌توانید تغییر مسیرها را از یک پرونده .htaccess ٬ پرونده CSV یا XML درون ریزی کنید."],"Import into":[null,"درون‌ریزی به"],"Upload":[null,"ارسال"],"Note that the group is ignored when uploading an XML file.":[null,"توجه کنید که گروه‌ها در درون‌ریزی XML در نظر گرفته نمی‌شوند !"],"Delete Redirection":[null,"پاک کردن تغییر مسیرها"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"انتخاب این گزینه باعث پاک شدن تمامی تغییر مسیرها٬ گزارش‌ها و تمامی تغییرات اعمال شده در افزونه می‌شود ! پس مراقب باشید !"],"Redirects":[null,"تغییر مسیرها"],"Log":[null,"گزارش‌ها"],"Support":[null,"پشتیبانی"],"Redirection Support":[null,"پشتیبانی تغییر مسیر"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"افزونه تغییر مسیر یک افزونه رایگان است - زندگی فوق‌العاده و عاشقانه است ! اما زمان زیادی برای توسعه و ساخت افزونه صرف شده است . شما می‌توانید با کمک‌های نقدی کوچک خود در توسعه افزونه سهیم باشید."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"این امر سبب می‌شود که توسعه افزونه ادامه داشته باشد و ساعات بیشتری صرف توسعه این افزونه شود و هر نگارش شامل ویژگی‌های تازه شود. همه برنده‌اند. "],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"اگر شما از این افزونه در راه‌اندازی‌های تجاری استفاده می‌کنید یا این افزونه را مفید می‌دانید شاید بخواهید کمک‌های نقدی تجاری را گزینش کنید."],"Individual<br/>Donation":[null,"کمک مالی <br/> شخصی"],"Commercial<br/>Donation":[null,"کمک مالی <br/> تجاری"],"Translations":[null,"ترجمه‌ها"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"اگر به زبانی مسلط هستید شاید بخواهید ما را در ترجمه های این افزونه کمک کنید :"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"لینک وب‌سایت مترجم ها در صفحه افزونه در وب‌سایت <a href=\"http://urbangiraffe.com/plugins/redirection/\">زرافه شهری</a> قرار خواهد گرفت."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"<a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">آموزش ترجمه افزونه و پوسته وردپرس</a>."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Manage all your 301 redirects and monitor 404 errors":[null,"مدیریت تمام ۳۰۱ تغییر مسیر و نظارت بر خطاهای ۴۰۴"],"John Godley":[null,"جان گادلی"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"]}
 
locale/json/redirection-fi.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2017-04-13 10:15:22+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"fi","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Edistyneet asetukset"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Hallitse 301-uudelleenohjauksia ja seuraa 404-virheitä"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Redirection Support":[null,"Redirection-tuki"],"Support":[null,"Tuki"],"404s":[null,"404:t"],"404s from %s":[null,"404:t osoitteesta %s"],"Log":[null,"Loki"],"Delete Redirection":[null,"Poista Redirection-lisäosa"],"Upload":[null,"Siirrä palvelimelle"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Tuonti"],"Update":[null,"Päivitä"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Luo URL automaattisesti"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Uniikki merkkijono (token), jonka avulla RSS-lukijat pääsevät Redirection-lokiin (jätä tyhjäksi, jos haluat että se luodaan automaattisesti)"],"RSS Token":[null,"RSS Token"],"Don't monitor":[null,"Älä monitoroi"],"Monitor changes to posts":[null,"Seuraa muutoksia sisällön osoitteissa"],"404 Logs":[null,"404-lokit"],"(time to keep logs for)":[null,"(aika lokien säilyttämiseen)"],"Redirect Logs":[null,"Uudelleenohjausloki"],"I'm a nice person and I have helped support the author of this plugin":[null,"Olen kiva typpi ja olen auttanut tukemalla lisäosan kehittäjää"],"Plugin support":[null,""],"Options":[null,"Asetukset"],"Two months":[null,"Kaksi kuukautta"],"A month":[null,"Kuukausi"],"A week":[null,"Viikko"],"A day":[null,"Päivä"],"No logs":[null,"Ei lokeja"],"Modules":[null,"Moduulit"],"Export to CSV":[null,""],"Delete All":[null,"Poista kaikki"],"Redirection Log":[null,"Uudelleenohjausloki"],"optional":[null,"valinnainen"],"Description":[null,"Kuvaus"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Käytä ryhmiä uudelleenohjauksiesi organisoimiseen. Ryhmät on asetettu moduuleille, mikä vaikuttaa kuinka sen ryhmän uudelleenohjaukset toimivat. Jos olet epävarma, pysyttele WordPress-moduulissa."],"Add Group":[null,"Lisää Ryhmä"],"Search":[null,"Haku"],"Groups":[null,"Ryhmät"],"Save":[null,"Tallenna"],"Add Redirection":[null,"Lisää uudelleenohjaus"],"Group":[null,"Ryhmä"],"Regular expression":[null,"Säännöllinen lauseke (regex)"],"Action":[null,"Toiminto"],"Match":[null,"Vertaa"],"Your redirection has been added.":[null,"Uudelleenohjaus lisätty."],"Add new redirection":[null,"Lisää uusi uudelleenohjaus"],"Cancel":[null,"Peruuta"],"Download":[null,"Lataa"],"Sorry, but your redirection was not created":[null,"Pahoittelut. Uudelleenohjausta ei luotu"],"Unable to perform action":[null,"Toimintoa ei voida suorittaa"],"No items were imported":[null,"Yhtään merkintää ei tuotu"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d uudelleenohjaus tuotiin onnistuneesti","%d uudelleenohjausta tuotiin onnistuneesti"],"Your options were updated":[null,"Asetukset päivitetty"],"Redirection":[null,"Uudelleenohjaus"],"Settings":[null,"Asetukset"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"WordPressin tekemät uudelleenohjaukset. Tämä ei vaadi enempää konfigurointia ja voit tutkia käyttömääriä."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Käytettäväksi Nginx-palvelimille. Vaatii manuaalisen asennuksen. Uudelleenohjaus tapahtuu lataamatta WordPressiä. Käyttömääriä ei seurata. Tämä on kokeellinen moduuli."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Lisää tai poista www automaattisesti sivustollesi."],"Default server":[null,"Oletuspalvelin"],"Canonical URL":[null,"Kanoninen URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess-tiedoston sijainti"],"Do nothing":[null,"Älä tee mitään"],"Error (404)":[null,"Virhe (404)"],"Pass-through":[null,"Läpikulku"],"Redirect to random post":[null,"Uudelleenohjaus satunnaiseen artikkeliin"],"Redirect to URL":[null,"Uudelleenohjaa osoitteeseen"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Uutta uudelleenohjausta ei voitu tehdä - poista Redirection asetuksista ja asenna uudestaan"],"Invalid source URL when creating redirect for given match type":[null,"Lähdeosoite ei kelpaa tälle vertailutyypille"],"Invalid group when creating redirect":[null,"Epäkelpo ryhmä uudelleenohjausta luotaessa"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Voit tehdä uudelleenohjauksia ainoastaan relatiivisista URL-osoittesta (<code>%s</code>) tällä domainilla (<code>%s</code>)."],"Source and target URL must be different":[null,"Lähde- ja kohdeosoitteiden tulee erota toisistaan"],"Configure":[null,"Konfiguroi"],"Show only this IP":[null,"Näytä vain Tämä IP"],"IP":[null,"IP"],"Source URL":[null,"Lähde-URL"],"Date":[null,"Päiväys"],"Add Redirect":[null,""],"All modules":[null,"Kaikki moduulit"],"View Redirects":[null,"Näytä uudelleenohjaukset"],"Module":[null,"Moduuli"],"Redirects":[null,"Uudelleenohjaukset"],"Name":[null,"Nimi"],"Filter":[null,"Suodata"],"No group filter":[null,"Ei ryhmäsuodatinta"],"Reset Hits":[null,"Nollaa osumat"],"Enable":[null,"Käytä"],"Disable":[null,"Poista käytöstä"],"Delete":[null,"Poista"],"Edit":[null,"Muokkaa"],"Last Access":[null,"Käytetty viimeksi"],"Hits":[null,"Osumat"],"URL":[null,"URL"],"Type":[null,"Laji"],"Modified Posts":[null,"Muokatut artikkelit"],"Redirections":[null,"Uudelleenohjaukset"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Kävijä ohjataan lähtöosoitteesta jos user agent täsmää. Voit syöttää <em>verrattavan</em> kohdeosoitteen paikaksi, jonne halutut kävijät uudelleenohjataan sekä niille, joiden osoite <em>ei täsmää</em>. Jos jätät URL-osoitteen tyhjäksi, kävijää ei ohjata. <strong>Kaikki vertailu tehdään säännönmukaisilla lauseilla (regex)</strong>.\n"],"User Agent":[null,"Selain"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL ja user agent"],"Target URL":[null,"Kohde-URL"],"URL only":[null,"Vain URL"],"Not matched":[null,"Ei-täsmäävät"],"Matched":[null,"Täsmäävät"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Kävijä uudelleenohjataan lähtöosoitteesta jos referrer-tieto täsmää. Voit syöttää <em>täsmääville</em> kohdeosoitteen ja <em>muille</em> oman osoitteen. Jos jätät URL-osoitteen tyhjäksi, kävijää ei uudelleenohjata."],"HTTP Code":[null,"HTTP-koodi"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL ja referrer"],"Logged Out":[null,"Kirjautumaton"],"Logged In":[null,"Kirjautunut"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Kohdeosoite valitaan seuraavista osoitteista riippuen onko käyttäjä kirjautunut sisään. Jos jätät URL-osoitteen tyhjäksi, käyttäjää ei uudelleenohjata."],"URL and login status":[null,"URL ja kirjautumistila"]}
 
locale/json/redirection-fr_FR.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-10-06 12:47:45+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n > 1;","x-generator":"GlotPress/2.4.0-alpha","language":"fr","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,""],"Never cache":[null,""],"An hour":[null,""],"Redirect Cache":[null,""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,""],"Are you sure you want to import from %s?":[null,""],"Plugin Importers":[null,""],"The following redirect plugins were detected on your site and can be imported from.":[null,""],"total = ":[null,""],"Import from %s":[null,""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,""],"Redirection not installed properly":[null,""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,""],"Default WordPress \"old slugs\"":[null,""],"Create associated redirect (added to end of URL)":[null,""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,""],"⚡️ Magic fix ⚡️":[null,""],"Plugin Status":[null,""],"Custom":[null,""],"Mobile":[null,""],"Feed Readers":[null,""],"Libraries":[null,""],"URL Monitor Changes":[null,""],"Save changes to this group":[null,""],"For example \"/amp\"":[null,""],"URL Monitor":[null,""],"Monitor changes to pages":[null,""],"Monitor trashed items (will create disabled redirects)":[null,""],"Delete 404s":[null,""],"Delete all logs for this 404":[null,""],"Delete all from IP %s":[null,""],"Delete all matching \"%s\"":[null,""],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,""],"Also check if your browser is able to load <code>redirection.js</code>:":[null,""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,""],"Unable to load Redirection":[null,""],"Unable to create group":[null,""],"Failed to fix database tables":[null,""],"Post monitor group is valid":[null,""],"Post monitor group is invalid":[null,""],"Post monitor group":[null,""],"All redirects have a valid group":[null,""],"Redirects with invalid groups detected":[null,""],"Valid redirect group":[null,""],"Valid groups detected":[null,""],"No valid groups, so you will not be able to create any redirects":[null,""],"Valid groups":[null,""],"Database tables":[null,""],"The following tables are missing:":[null,""],"All tables present":[null,""],"Cached Redirection detected":[null,"Redirection en cache détectée"],"Please clear your browser cache and reload this page.":[null,""],"The data on this page has expired, please reload.":[null,"Les données de cette page ont expiré, veuillez la recharger."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,"WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une erreur est survenue ou que la requête a été bloquée. Veuillez consulter les error_log de votre serveur."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,"Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête pourrait avoir été bloquée. Utilisez-vous un firewall ou une extension de sécurité ?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,"WordPress renvoie un message imprévu. Cela indique habituellement qu’une extension ou un thème sort des données qu’il ne devrait pas sortir. Tentez de désactiver d’autres extensions et réessayez."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,"Si le problème n’est pas connu alors tentez de désactiver d’autres extensions – c’est simple à faire et vous pouvez les réactiver rapidement. Les autres extensions peuvent parfois entrer en conflit."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,"Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."],"If you think Redirection is at fault then create an issue.":[null,"Si vous pensez que Redirection est en faute alors créez un rapport."],"This may be caused by another plugin - look at your browser's error console for more details.":[null,"Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."],"Loading, please wait...":[null,"Veuillez patienter pendant le chargement…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,"{{strong}}Fichier au format CSV{{/strong}} : {{code}}source URL, target URL{{/code}} – facultativement suivi par {{code}}regex, http code{{/code}} {{code}}regex{{/code}} – mettez 0 pour non, 1 pour oui."],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,"L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,"Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,"Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."],"Create Issue":[null,"Créer un rapport"],"Email":[null,"E-mail"],"Important details":[null,"Informations importantes"],"Need help?":[null,"Besoin d’aide ?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,"Veuillez noter que tout support est fourni sur la base de mon temps libre et que cela n’est pas garanti. Je ne propose pas de support payant."],"Pos":[null,"Pos"],"410 - Gone":[null,"410 – Gone"],"Position":[null,"Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,"Utilisé pour générer une URL si aucune URL n’est donnée. Utilisez les étiquettes spéciales {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} pour insérer un identifiant unique déjà utilisé."],"Apache Module":[null,"Module Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,"Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."],"Import to group":[null,"Importer dans le groupe"],"Import a CSV, .htaccess, or JSON file.":[null,"Importer un fichier CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":[null,"Cliquer sur « ajouter un fichier » ou glisser-déposer ici."],"Add File":[null,"Ajouter un fichier"],"File selected":[null,"Fichier sélectionné"],"Importing":[null,"Import"],"Finished importing":[null,"Import terminé"],"Total redirects imported:":[null,"Total des redirections importées :"],"Double-check the file is the correct format!":[null,"Vérifiez à deux fois si le fichier et dans le bon format !"],"OK":[null,"OK"],"Close":[null,"Fermer"],"All imports will be appended to the current database.":[null,"Tous les imports seront ajoutés à la base de données actuelle."],"Export":[null,"Exporter"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,"Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."],"Everything":[null,"Tout"],"WordPress redirects":[null,"Redirections WordPress"],"Apache redirects":[null,"Redirections Apache"],"Nginx redirects":[null,"Redirections Nginx"],"CSV":[null,"CSV"],"Apache .htaccess":[null,".htaccess Apache"],"Nginx rewrite rules":[null,"Règles de réécriture Nginx"],"Redirection JSON":[null,"Redirection JSON"],"View":[null,"Visualiser"],"Log files can be exported from the log pages.":[null,"Les fichier de journal peuvent être exportés depuis les pages du journal."],"Import/Export":[null,"Import/export"],"Logs":[null,"Journaux"],"404 errors":[null,"Erreurs 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,"Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."],"I'd like to support some more.":[null,"Je voudrais soutenir un peu plus."],"Support 💰":[null,"Support 💰"],"Redirection saved":[null,"Redirection sauvegardée"],"Log deleted":[null,"Journal supprimé"],"Settings saved":[null,"Réglages sauvegardés"],"Group saved":[null,"Groupe sauvegardé"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","Êtes-vous sûr•e de vouloir supprimer cet élément ?","Êtes-vous sûr•e de vouloir supprimer ces éléments ?"],"pass":[null,"Passer"],"All groups":[null,"Tous les groupes"],"301 - Moved Permanently":[null,"301 - déplacé de façon permanente"],"302 - Found":[null,"302 – trouvé"],"307 - Temporary Redirect":[null,"307 – Redirigé temporairement"],"308 - Permanent Redirect":[null,"308 – Redirigé de façon permanente"],"401 - Unauthorized":[null,"401 – Non-autorisé"],"404 - Not Found":[null,"404 – Introuvable"],"Title":[null,"Titre"],"When matched":[null,"Quand cela correspond"],"with HTTP code":[null,"avec code HTTP"],"Show advanced options":[null,"Afficher les options avancées"],"Matched Target":[null,"Cible correspondant"],"Unmatched Target":[null,"Cible ne correspondant pas"],"Saving...":[null,"Sauvegarde…"],"View notice":[null,"Voir la notification"],"Invalid source URL":[null,"URL source non-valide"],"Invalid redirect action":[null,"Action de redirection non-valide"],"Invalid redirect matcher":[null,"Correspondance de redirection non-valide"],"Unable to add new redirect":[null,"Incapable de créer une nouvelle redirection"],"Something went wrong 🙁":[null,"Quelque chose s’est mal passé 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"J’essayais de faire une chose et ça a mal tourné. C’est peut-être un problème temporaire et si vous essayez à nouveau, cela pourrait fonctionner, c’est génial !"],"It didn't work when I tried again":[null,"Cela n’a pas fonctionné quand j’ai réessayé."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"Voyez si votre problème est décrit dans la liste des {{link}}problèmes de redirection{{/ link}} exceptionnels. Veuillez ajouter plus de détails si vous rencontrez le même problème."],"Log entries (%d max)":[null,"Entrées du journal (100 max.)"],"Search by IP":[null,"Rechercher par IP"],"Select bulk action":[null,"Sélectionner l’action groupée"],"Bulk Actions":[null,"Actions groupées"],"Apply":[null,"Appliquer"],"First page":[null,"Première page"],"Prev page":[null,"Page précédente"],"Current Page":[null,"Page courante"],"of %(page)s":[null,"de %(page)s"],"Next page":[null,"Page suivante"],"Last page":[null,"Dernière page"],"%s item":["%s items","%s élément","%s éléments"],"Select All":[null,"Tout sélectionner"],"Sorry, something went wrong loading the data - please try again":[null,"Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."],"No results":[null,"Aucun résultat"],"Delete the logs - are you sure?":[null,"Confirmez-vous la suppression des journaux ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"Une fois supprimés, vos journaux actuels ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de l’extension Redirection si vous désirez procéder automatiquement."],"Yes! Delete the logs":[null,"Oui ! Supprimer les journaux"],"No! Don't delete the logs":[null,"Non ! Ne pas supprimer les journaux"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."],"Newsletter":[null,"Newsletter"],"Want to keep up to date with changes to Redirection?":[null,"Vous souhaitez être au courant des modifications apportées à Redirection ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."],"Your email address:":[null,"Votre adresse de messagerie :"],"You've supported this plugin - thank you!":[null,"Vous avez apporté votre soutien à l’extension. Merci !"],"You get useful software and I get to carry on making it better.":[null,"Vous avez une extension utile, et je peux continuer à l’améliorer."],"Forever":[null,"Indéfiniment"],"Delete the plugin - are you sure?":[null,"Confirmez-vous vouloir supprimer cette extension ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."],"Yes! Delete the plugin":[null,"Oui ! Supprimer l’extension"],"No! Don't delete the plugin":[null,"Non ! Ne pas supprimer l’extension"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Gérez toutes vos redirections 301 et surveillez les erreurs 404."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Redirection est utilisable gratuitement. La vie est belle ! Cependant, cette extension a nécessité beaucoup de travail et d’effort pour être développée. Donc si vous la trouvez utile, vous pouvez contribuer à son développement en {{strong}}faisant un petit don{{/strong}}."],"Support":[null,"Support"],"404s":[null,"404"],"Log":[null,"Journaux"],"Delete Redirection":[null,"Supprimer la redirection"],"Upload":[null,"Mettre en ligne"],"Import":[null,"Importer"],"Update":[null,"Mettre à jour"],"Auto-generate URL":[null,"URL auto-générée&nbsp;"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Un jeton unique permettant aux lecteurs de flux d’accéder au flux RSS des journaux de Redirection (laisser vide pour générer automatiquement)."],"RSS Token":[null,"Jeton RSS "],"Monitor changes to posts":[null,"Surveiller les modifications apportées aux publications&nbsp;"],"404 Logs":[null,"Journaux des 404 "],"(time to keep logs for)":[null,"(durée de conservation des journaux)"],"Redirect Logs":[null,"Journaux des redirections "],"I'm a nice person and I have helped support the author of this plugin":[null,"Je suis un type bien et j&rsquo;ai aidé l&rsquo;auteur de cette extension."],"Plugin Support":[null,"Support de l’extension "],"Options":[null,"Options"],"Two months":[null,"Deux mois"],"A month":[null,"Un mois"],"A week":[null,"Une semaine"],"A day":[null,"Un jour"],"No logs":[null,"Aucun journal"],"Delete All":[null,"Tout supprimer"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Utilisez les groupes pour organiser vos redirections. Les groupes sont assignés à un module qui affecte la manière dont les redirections dans ce groupe fonctionnent. Si vous n’êtes pas sûr/e, tenez-vous en au module de WordPress."],"Add Group":[null,"Ajouter un groupe"],"Search":[null,"Rechercher"],"Groups":[null,"Groupes"],"Save":[null,"Enregistrer"],"Group":[null,"Groupe"],"Match":[null,"Correspondant"],"Add new redirection":[null,"Ajouter une nouvelle redirection"],"Cancel":[null,"Annuler"],"Download":[null,"Télécharger"],"Redirection":[null,"Redirection"],"Settings":[null,"Réglages"],"Do nothing":[null,"Ne rien faire"],"Error (404)":[null,"Erreur (404)"],"Pass-through":[null,"Outrepasser"],"Redirect to random post":[null,"Rediriger vers un article aléatoire"],"Redirect to URL":[null,"Redirection vers une URL"],"Invalid group when creating redirect":[null,"Groupe non valide à la création d’une redirection"],"Show only this IP":[null,"Afficher uniquement cette IP"],"IP":[null,"IP"],"Source URL":[null,"URL source"],"Date":[null,"Date"],"Add Redirect":[null,"Ajouter une redirection"],"All modules":[null,"Tous les modules"],"View Redirects":[null,"Voir les redirections"],"Module":[null,"Module"],"Redirects":[null,"Redirections"],"Name":[null,"Nom"],"Filter":[null,"Filtre"],"Reset hits":[null,"Réinitialiser les vues"],"Enable":[null,"Activer"],"Disable":[null,"Désactiver"],"Delete":[null,"Supprimer"],"Edit":[null,"Modifier"],"Last Access":[null,"Dernier accès"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Type"],"Modified Posts":[null,"Articles modifiés"],"Redirections":[null,"Redirections"],"User Agent":[null,"Agent utilisateur"],"URL and user agent":[null,"URL et agent utilisateur"],"Target URL":[null,"URL cible"],"URL only":[null,"URL uniquement"],"Regex":[null,"Regex"],"Referrer":[null,"Référant"],"URL and referrer":[null,"URL et référent"],"Logged Out":[null,"Déconnecté"],"Logged In":[null,"Connecté"],"URL and login status":[null,"URL et état de connexion"]}
1
+ {"":[],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":["Jamais de cache"],"An hour":["Une heure"],"Redirect Cache":["Cache de redirection"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":["Confirmez-vous l’importation depuis %s ?"],"Plugin Importers":[""],"The following redirect plugins were detected on your site and can be imported from.":["Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."],"total = ":["total = "],"Import from %s":["Importer depuis %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Des problèmes ont été détectés avec les tables de votre base de données. Veuillez visiter la <a href=\"%s\">page de support</a> pour plus de détails."],"Redirection not installed properly":["Redirection n’est pas correctement installé"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mettre à jour votre installation WordPress."],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":["Créer une redirection associée (ajoutée à la fin de l’URL)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> n’est pas défini. Cela signifie généralement qu’une autre extension bloque le chargement de Redirection. Veuillez désactiver toutes les extensions et réessayer."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Si le bouton magique ne fonctionne pas, veuillez lire l’erreur et voir si vous pouvez le réparer manuellement, sinon suivez la section « Besoin d’aide » ci-dessous."],"⚡️ Magic fix ⚡️":["⚡️ Correction magique ⚡️"],"Plugin Status":["Statut de l’extension"],"Custom":["Personnalisé"],"Mobile":["Mobile"],"Feed Readers":["Lecteurs de flux"],"Libraries":["Librairies"],"URL Monitor Changes":[""],"Save changes to this group":["Enregistrer les modifications apportées à ce groupe"],"For example \"/amp\"":["Par exemple « /amp »"],"URL Monitor":["URL à surveiller"],"Monitor changes to pages":["Surveiller les modifications apportées aux pages"],"Monitor trashed items (will create disabled redirects)":["Surveiller les éléments supprimés (crée des redirections désactivées)"],"Delete 404s":["Supprimer les pages 404"],"Delete all logs for this 404":["Supprimer tous les journaux pour cette page 404"],"Delete all from IP %s":["Tout supprimer depuis l’IP %s"],"Delete all matching \"%s\"":["Supprimer toutes les correspondances « %s »"],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":["Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Si vous utilisez une extension ou un service de mise en cache de pages (CloudFlare, OVH, etc.), vous pouvez également essayer de vider ce cache."],"Unable to load Redirection":["Impossible de charger Redirection"],"Unable to create group":["Impossible de créer un groupe"],"Failed to fix database tables":["La réparation des tables de la base de données a échoué."],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":["Toutes les redirections ont un groupe valide"],"Redirects with invalid groups detected":["Redirections avec des groupes non valides détectées"],"Valid redirect group":["Groupe de redirection valide"],"Valid groups detected":["Groupes valides détectés"],"No valid groups, so you will not be able to create any redirects":["Aucun groupe valide, vous ne pourrez pas créer de redirections."],"Valid groups":["Groupes valides"],"Database tables":["Tables de la base de données"],"The following tables are missing:":["Les tables suivantes sont manquantes :"],"All tables present":["Toutes les tables présentes"],"Cached Redirection detected":["Redirection en cache détectée"],"Please clear your browser cache and reload this page.":["Veuillez vider le cache de votre navigateur et recharger cette page."],"The data on this page has expired, please reload.":["Les données de cette page ont expiré, veuillez la recharger."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress n’a pas renvoyé de réponse. Cela peut signifier qu’une erreur est survenue ou que la requête a été bloquée. Veuillez consulter les error_log de votre serveur."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":["Votre serveur renvoie une erreur 403 Forbidden indiquant que la requête pourrait avoir été bloquée. Utilisez-vous un firewall ou une extension de sécurité ?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress renvoie un message imprévu. Cela indique habituellement qu’une extension ou un thème sort des données qu’il ne devrait pas sortir. Tentez de désactiver d’autres extensions et réessayez."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Si le problème n’est pas connu alors tentez de désactiver d’autres extensions – c’est simple à faire et vous pouvez les réactiver rapidement. Les autres extensions peuvent parfois entrer en conflit."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Incluez ces détails dans votre rapport {{strong}}avec une description de ce que vous {{/strong}}."],"If you think Redirection is at fault then create an issue.":["Si vous pensez que Redirection est en faute alors créez un rapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Cela peut être causé par une autre extension – regardez la console d’erreur de votre navigateur pour plus de détails."],"Loading, please wait...":["Veuillez patienter pendant le chargement…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}Fichier au format CSV{{/strong}} : {{code}}source URL, target URL{{/code}} – facultativement suivi par {{code}}regex, http code{{/code}} {{code}}regex{{/code}} – mettez 0 pour non, 1 pour oui."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["L’extension Redirection ne fonctionne pas. Essayez de nettoyer votre cache navigateur puis rechargez cette page."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Si cela n’aide pas, ouvrez la console de votre navigateur et ouvrez un {{link}}nouveau ticket{{/link}} avec les détails."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Si cela est un nouveau problème veuillez soit {{strong}}créer un nouveau ticket{{/strong}}, soit l’envoyer par {{strong}}e-mail{{/strong}}. Mettez-y une description de ce que vous essayiez de faire et les détails importants listés ci-dessous. Veuillez inclure une capture d’écran."],"Create Issue":["Créer un rapport"],"Email":["E-mail"],"Important details":["Informations importantes"],"Need help?":["Besoin d’aide ?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Veuillez noter que tout support est fourni sur la base de mon temps libre et que cela n’est pas garanti. Je ne propose pas de support payant."],"Pos":["Pos"],"410 - Gone":["410 – Gone"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":["Utilisé pour générer une URL si aucune URL n’est donnée. Utilisez les étiquettes spéciales {{code}}$dec${{/code}} ou {{code}}$hex${{/code}} pour insérer un identifiant unique déjà utilisé."],"Apache Module":["Module Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Saisissez le chemin complet et le nom de fichier si vous souhaitez que Redirection mette à jour automatiquement votre {{code}}.htaccess{{/code}}."],"Import to group":["Importer dans le groupe"],"Import a CSV, .htaccess, or JSON file.":["Importer un fichier CSV, .htaccess ou JSON."],"Click 'Add File' or drag and drop here.":["Cliquer sur « ajouter un fichier » ou glisser-déposer ici."],"Add File":["Ajouter un fichier"],"File selected":["Fichier sélectionné"],"Importing":["Import"],"Finished importing":["Import terminé"],"Total redirects imported:":["Total des redirections importées :"],"Double-check the file is the correct format!":["Vérifiez à deux fois si le fichier et dans le bon format !"],"OK":["OK"],"Close":["Fermer"],"All imports will be appended to the current database.":["Tous les imports seront ajoutés à la base de données actuelle."],"Export":["Exporter"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exporter en CSV, Apache .htaccess, Nginx, ou en fichier de redirection JSON (qui contiendra toutes les redirections et les groupes)."],"Everything":["Tout"],"WordPress redirects":["Redirections WordPress"],"Apache redirects":["Redirections Apache"],"Nginx redirects":["Redirections Nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess Apache"],"Nginx rewrite rules":["Règles de réécriture Nginx"],"Redirection JSON":["Redirection JSON"],"View":["Visualiser"],"Log files can be exported from the log pages.":["Les fichier de journal peuvent être exportés depuis les pages du journal."],"Import/Export":["Import/export"],"Logs":["Journaux"],"404 errors":["Erreurs 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Veuillez mentionner {{code}}%s{{/code}}, et expliquer ce que vous faisiez à ce moment-là."],"I'd like to support some more.":["Je voudrais soutenir un peu plus."],"Support 💰":["Support 💰"],"Redirection saved":["Redirection sauvegardée"],"Log deleted":["Journal supprimé"],"Settings saved":["Réglages sauvegardés"],"Group saved":["Groupe sauvegardé"],"Are you sure you want to delete this item?":["Êtes-vous sûr•e de vouloir supprimer cet élément ?","Êtes-vous sûr•e de vouloir supprimer ces éléments ?"],"pass":["Passer"],"All groups":["Tous les groupes"],"301 - Moved Permanently":["301 - déplacé de façon permanente"],"302 - Found":["302 – trouvé"],"307 - Temporary Redirect":["307 – Redirigé temporairement"],"308 - Permanent Redirect":["308 – Redirigé de façon permanente"],"401 - Unauthorized":["401 – Non-autorisé"],"404 - Not Found":["404 – Introuvable"],"Title":["Titre"],"When matched":["Quand cela correspond"],"with HTTP code":["avec code HTTP"],"Show advanced options":["Afficher les options avancées"],"Matched Target":["Cible correspondant"],"Unmatched Target":["Cible ne correspondant pas"],"Saving...":["Sauvegarde…"],"View notice":["Voir la notification"],"Invalid source URL":["URL source non-valide"],"Invalid redirect action":["Action de redirection non-valide"],"Invalid redirect matcher":["Correspondance de redirection non-valide"],"Unable to add new redirect":["Incapable de créer une nouvelle redirection"],"Something went wrong 🙁":["Quelque chose s’est mal passé 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["J’essayais de faire une chose et ça a mal tourné. C’est peut-être un problème temporaire et si vous essayez à nouveau, cela pourrait fonctionner, c’est génial !"],"It didn't work when I tried again":["Cela n’a pas fonctionné quand j’ai réessayé."],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Voyez si votre problème est décrit dans la liste des {{link}}problèmes de redirection{{/ link}} exceptionnels. Veuillez ajouter plus de détails si vous rencontrez le même problème."],"Log entries (%d max)":["Entrées du journal (100 max.)"],"Search by IP":["Rechercher par IP"],"Select bulk action":["Sélectionner l’action groupée"],"Bulk Actions":["Actions groupées"],"Apply":["Appliquer"],"First page":["Première page"],"Prev page":["Page précédente"],"Current Page":["Page courante"],"of %(page)s":["de %(page)s"],"Next page":["Page suivante"],"Last page":["Dernière page"],"%s item":["%s élément","%s éléments"],"Select All":["Tout sélectionner"],"Sorry, something went wrong loading the data - please try again":["Désolé, quelque chose a échoué au chargement des données. Veuillez réessayer."],"No results":["Aucun résultat"],"Delete the logs - are you sure?":["Confirmez-vous la suppression des journaux ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Une fois supprimés, vos journaux actuels ne seront plus disponibles. Vous pouvez définir une règle de suppression dans les options de l’extension Redirection si vous désirez procéder automatiquement."],"Yes! Delete the logs":["Oui ! Supprimer les journaux"],"No! Don't delete the logs":["Non ! Ne pas supprimer les journaux"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Merci pour votre abonnement ! {{a}}Cliquez ici{{/a}} si vous souhaitez revenir à votre abonnement."],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":["Vous souhaitez être au courant des modifications apportées à Redirection ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Inscrivez-vous à la minuscule newsletter de Redirection. Avec quelques envois seulement, cette newsletter vous informe sur les nouvelles fonctionnalités et les modifications apportées à l’extension. La solution idéale si vous voulez tester les versions bêta."],"Your email address:":["Votre adresse de messagerie :"],"You've supported this plugin - thank you!":["Vous avez apporté votre soutien à l’extension. Merci !"],"You get useful software and I get to carry on making it better.":["Vous avez une extension utile, et je peux continuer à l’améliorer."],"Forever":["Indéfiniment"],"Delete the plugin - are you sure?":["Confirmez-vous vouloir supprimer cette extension ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Supprimer cette extension retirera toutes vos redirections, journaux et réglages. Faites-le si vous souhaitez vraiment supprimer l’extension, ou si vous souhaitez la réinitialiser."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["Une fois supprimées, vos redirections ne fonctionneront plus. Si elles continuent de fonctionner, veuillez vider votre cache navigateur."],"Yes! Delete the plugin":["Oui ! Supprimer l’extension"],"No! Don't delete the plugin":["Non ! Ne pas supprimer l’extension"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gérez toutes vos redirections 301 et surveillez les erreurs 404."],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection est utilisable gratuitement. La vie est belle ! Cependant, cette extension a nécessité beaucoup de travail et d’effort pour être développée. Donc si vous la trouvez utile, vous pouvez contribuer à son développement en {{strong}}faisant un petit don{{/strong}}."],"Support":["Support"],"404s":["404"],"Log":["Journaux"],"Delete Redirection":["Supprimer la redirection"],"Upload":["Mettre en ligne"],"Import":["Importer"],"Update":["Mettre à jour"],"Auto-generate URL":["URL auto-générée&nbsp;"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un jeton unique permettant aux lecteurs de flux d’accéder au flux RSS des journaux de Redirection (laisser vide pour générer automatiquement)."],"RSS Token":["Jeton RSS "],"Monitor changes to posts":["Surveiller les modifications apportées aux publications&nbsp;"],"404 Logs":["Journaux des 404 "],"(time to keep logs for)":["(durée de conservation des journaux)"],"Redirect Logs":["Journaux des redirections "],"I'm a nice person and I have helped support the author of this plugin":["Je suis un type bien et j&rsquo;ai aidé l&rsquo;auteur de cette extension."],"Plugin Support":["Support de l’extension "],"Options":["Options"],"Two months":["Deux mois"],"A month":["Un mois"],"A week":["Une semaine"],"A day":["Un jour"],"No logs":["Aucun journal"],"Delete All":["Tout supprimer"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utilisez les groupes pour organiser vos redirections. Les groupes sont assignés à un module qui affecte la manière dont les redirections dans ce groupe fonctionnent. Si vous n’êtes pas sûr/e, tenez-vous en au module de WordPress."],"Add Group":["Ajouter un groupe"],"Search":["Rechercher"],"Groups":["Groupes"],"Save":["Enregistrer"],"Group":["Groupe"],"Match":["Correspondant"],"Add new redirection":["Ajouter une nouvelle redirection"],"Cancel":["Annuler"],"Download":["Télécharger"],"Redirection":["Redirection"],"Settings":["Réglages"],"Do nothing":["Ne rien faire"],"Error (404)":["Erreur (404)"],"Pass-through":["Outrepasser"],"Redirect to random post":["Rediriger vers un article aléatoire"],"Redirect to URL":["Redirection vers une URL"],"Invalid group when creating redirect":["Groupe non valide à la création d’une redirection"],"Show only this IP":["Afficher uniquement cette IP"],"IP":["IP"],"Source URL":["URL source"],"Date":["Date"],"Add Redirect":["Ajouter une redirection"],"All modules":["Tous les modules"],"View Redirects":["Voir les redirections"],"Module":["Module"],"Redirects":["Redirections"],"Name":["Nom"],"Filter":["Filtre"],"Reset hits":["Réinitialiser les vues"],"Enable":["Activer"],"Disable":["Désactiver"],"Delete":["Supprimer"],"Edit":["Modifier"],"Last Access":["Dernier accès"],"Hits":["Hits"],"URL":["URL"],"Type":["Type"],"Modified Posts":["Articles modifiés"],"Redirections":["Redirections"],"User Agent":["Agent utilisateur"],"URL and user agent":["URL et agent utilisateur"],"Target URL":["URL cible"],"URL only":["URL uniquement"],"Regex":["Regex"],"Referrer":["Référant"],"URL and referrer":["URL et référent"],"Logged Out":["Déconnecté"],"Logged In":["Connecté"],"URL and login status":["URL et état de connexion"]}
locale/json/redirection-he_IL.json DELETED
@@ -1 +0,0 @@
1
- {"":{"project-id-version":"Redirection 1.7.26","report-msgid-bugs-to":"","pot-creation-date":"2007-08-10 11:07+0800","po-revision-date":"2008-11-10 06:06+0200","last-translator":"Rami Yushuvaev <r_a_m_i@hotmail.com>","language-team":"Rami Yushuvaev <r_a_m_i@hotmail.com>","mime-version":"1.0","content-type":"text/plain; charset=utf-8","content-transfer-encoding":"8bit","x-poedit-language":"Hebrew","x-poedit-country":"ISRAEL","x-poedit-sourcecharset":"utf-8","x-poedit-keywordslist":"__;_e;__ ;_e","x-poedit-basepath":"."},"How many widgets would you like?":[null,"כמה ווידג'טים?"],"Save":[null,"שמור"],"Redirection":[null,"הפניות"],"Your logs have been deleted":[null,"הרישומים נמחקו"],"Previous":[null,"קודם"],"Next":[null,"הבא"],"404 Report for: ":[null,"404 Report for: "],"Redirect based on login status":[null,"Redirect based on login status"],"Logged in URL":[null,"Logged in URL"],"Logged out URL":[null,"Logged out URL"],"An empty URL means the source URL is not redirected when the user is logged in/logged out.":[null,"An empty URL means the source URL is not redirected when the user is logged in/logged out."],"Redirect to a random WordPress post":[null,"הפניה לפוסט רנדומלי"],"Redirect to one of several URLs":[null,"הפניה לאחד ממספר URLים"],"Target URL":[null,"URL היעד"],"Redirect based on referrer":[null,"Redirect based on referrer"],"Referrer":[null,"מפנה"],"Referrer Regex":[null,"Referrer Regex"],"URL from referrer":[null,"URL from referrer"],"Not from referrer":[null,"Not from referrer"],"An empty URL means the source URL is not redirected.":[null,"המשמעות של URL ריק היא ש-URL המקור לא מהווה הפניה."],"Simple redirection":[null,"הפניה פשוטה"],"Redirection 404 Log":[null,"Redirection 404 Log"],"You have no 404 logs!":[null,"אין רישומי שגיאות 404."],"Delete All 404s":[null,"מחיקת כל 404"],"This will delete all logged 404 errors. Please be sure this is what you want to do.":[null,"הפעולה תמחוק את כל רישומי שיגאות 404, האם אתה בטוח?"],"Are you sure?":[null,"האם אתה בטוח?"],"Add redirection":[null,"הוסף הפניה"],"Delete":[null,"מחק"],"at":[null,"ב"],"Source URL":[null,"כתובת מקור"],"User Agent":[null,"User Agent"],"IP":[null,"IP"],"Add new redirection":[null,"הוספת הפניה"],"Type":[null,"סוג"],"Method":[null,"שיטה"],"Pass-through":[null,"Pass-through"],"Regex":[null,"Regex"],"Add Redirection":[null,"הוסף הפניה"],"Please wait...":[null,"אנא המתן..."],"Reset":[null,"אפֵּס"],"Last User":[null,"משתמש אחרון"],"Open referrer":[null,"הפניה פתוחה"],"Last Referrer":[null,"הפני אחרונה"],"Cancel":[null,"בטל"],"Redirection Log":[null,"רישומי הפניות"],"You have no logs!":[null,"אין רישומים."],"Delete All Logs":[null,"מחק את כל "],"Redirected by":[null,"הופנה על ידי"],"for":[null,"for"],"Options":[null,"הגדרות"],"Create 301 when post slug changes":[null,"צור 301 כאשר משתנה ההפניה (slug) של הפוסט"],"Redirect index.php/index.html":[null,"הפנה index.php/index.html"],"Root domain":[null,"דומיין מקור"],"No":[null,"לא"],"Strip www":[null,"הסר www"],"Add www":[null,"הוסף www"],"Auto-generate URL":[null,"יצירה אוטומטית של URL"],"Globally redirect unknown 404 errors":[null,"הפניה גלובאלית של שגיאות 404 ידועות"],"Log 404 errors":[null,"רישום שגיאות 404"],"Check for updates":[null,"בדוק עדכונים"],"Update":[null,"עדכן"],"Search":[null,"חיפוש"],"Per page":[null,"פר עמוד"],"go":[null,"בצע"],"%s Redirections":[null,"% הפניות"],"You have no redirections.":[null,"אין הפניות."],"%s ago":[null,"לפני %"]}
 
locale/json/redirection-hi_IN.json DELETED
@@ -1 +0,0 @@
1
- {"":{"project-id-version":"Redirection 2.1.17","report-msgid-bugs-to":"","pot-creation-date":"2009-06-30 05:59+0530","po-revision-date":"2009-06-30 07:02+0530","last-translator":"Ashish <ashish@outshinesolutions.com>","language-team":"WordPress India Project <http://outshinesolutions.com/wordpress/>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Hindi","x-poedit-country":"India","x-poedit-sourcecharset":"utf-8","x-poedit-basepath":"../","x-poedit-keywordslist":"__;_e","x-poedit-searchpath-0":"."},"Sorry, but your redirection was not created":[null,"क्षमा करें, किंतु आपका redirection नहीं बनाया गया था"],"Settings":[null,"सेटिंग्स"],"Redirection Help":[null,"Redirection सहायता"],"Redirection Documentation":[null,"Redirection दस्तावेज़ीकरण"],"Redirection Support Forum":[null,"Redirection समर्थन फोरम"],"Redirection Bug Tracker":[null,"Redirection बग ट्रैकर"],"Redirection FAQ":[null,"Redirection अकसर किये गए सवाल"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"कृपया सवाल पूछने से पहले दस्तावेज़ीकरण और अकसर किये गए सवाल पढ़ने और बग tracker की जाँच कर लें."],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"आपका मॉड्यूल सफलतापूर्वक बनाया गया"],"Your module was not created - did you provide a name?":[null,"आपका मॉड्यूल नहीं बनाया जा सका - क्या आपने एक नाम प्रदान किया था ?"],"Your options were updated":[null,"आपके विकल्प नवीनीकृत हो चुके हैं"],"Redirection data has been deleted and the plugin disabled":[null,"Redirection डाटा हटा दिया गया है और प्लगइन निष्क्रिय कर दिया गया है"],"No items were imported":[null,"कोई आइटम आयात नहीं किया गया."],"Your logs have been deleted":[null,"आपका लॉग हटा दिया गया है"],"Your group was added successfully":[null,"आपका समूह सफलतापूर्वक जोड़ दिया गया"],"Please specify a group name":[null,"कृपया समूह का एक नाम निर्दिष्ट करें"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s पर आयातित %s पर %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"XML आयात PHP5 के साथ ही उपलब्ध है - और आपके पास PHP4 है"],"URL and login status":[null,"URL और प्रवेश स्थिति"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"इस लक्ष्य की यूआरएल निम्न यूआरएलों में से एक चुन ले, ये इस बात पे निर्भर करेगा की उसेर लोगिन है या लोगोंउट. यूआरएल (URL) रिक्त छोरने का मतलब यह है कि उपयोगकर्ता निर्देशित नहीं हो रहा है."],"Logged In":[null,"पहले से लोगिन "],"Logged Out":[null,"लोग्गेद आउट "],"URL and referrer":[null,"URL और रेफेर्रेर "],"Referrer":[null,"रेफेर्रेर "],"Regex":[null,"रेजेक्स "],"HTTP Code":[null,"HTTP संहिता"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"अगर रेफेरेर मैच करता है तो आगंतुक को निर्देशित किया जाएगा. आप निर्दिष्ट कर सकते है <em>मेल खाने वाले </ em> अगर आगुन्तक को लक्ष्य उरल पर भेजना है अगर वोह मेल खाते है तो या आप निर्दिष्ट कर सकते है <em>मेल नहीं खाने वाले </ em> आंगुतक को लक्ष्य उरल पे भेजने के लिए अगर्र वोह मेल नहीं खाते है तोः URL को रिक्त छोरने का मतलब होगा की आगुन्तक कहीं निर्देशित नहीं होगा "],"Matched":[null,"मेल खाने वाले"],"Not matched":[null,"मेल नहीं खाने वाले"],"URL only":[null,"URL केवल"],"Target URL":[null,"लक्ष्य URL"],"URL and user agent":[null,"URL और उसेर एजेंट "],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"उसेर एजेंट "],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"अगर उज़र एजेंट मैच करता है तो आगंतुक को निर्देशित किया जाएगा. आप निर्दिष्ट कर सकते है <em>मेल खाने वाले </ em> अगर आगुन्तक को लक्ष्य उरल पर भेजना है अगर वोह मेल खाते है तो या आप निर्दिष्ट कर सकते है <em>मेल नहीं खाने वाले </ em> आंगुतक को लक्ष्य उरल पे भेजने के लिए अगर्र वोह मेल नहीं खाते है तोः URL को रिक्त छोरने का मतलब होगा की आगुन्तक कहीं निर्देशित नहीं होगा. <strong>सभी मैचों नियमित अभिव्यक्ति के रूप में कार्य करेंगे </strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"404 Errors":[null,"404 त्रुटियाँ"],"Redirections":[null,"redirections (रिडाऐरेकसन )"],"Modified posts":[null,"संशोधित पोस्ट"],"Strip WWW":[null,"WWW हटाये "],"Force WWW":[null,"WWW लगाये"],"Strip index.php":[null,"index.php हटाये "],"Previous":[null,"पिछला"],"Next":[null,"अगला"],"%d per-page":[null,"%d प्रतेएक पृष्ट पे "],"Displaying %s&#8211;%s of %s":[null,"%s&#8211;%s में %s दिखा रहा है "],"Redirect to URL":[null,"URL के लिए र्निर्देशन"],"Redirect to random post":[null,"रन्दोम पोस्ट करने के लिए र्निर्देशन"],"Pass-through":[null,"पास के माध्यम से "],"Error (404)":[null,"त्रुटिー (404)"],"Do nothing":[null,"कुछ नहीं करें "],"Log 404s":[null,"404 लोगस "],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>\tनिष्क्रिय: आपको पहले <a href=\"options-permalink.php\">पर्मालिंक्स </a> को सक्षम करना होगा</strong>"],"<small>No options have been set</small>":[null,"<small>कोई विकल्प सेट नहीं किया गया है</small>"],"Location":[null,"स्थान"],"WordPress is installed in: <code>%s</code>":[null,"WordPress स्थापित है: <code>%s</code>"],"Canonical":[null,"धर्मवैधानिक (canonical)"],"Leave as is":[null,"ऐसे ही छोर दें "],"Strip WWW (%s)":[null,"WWW हटाये (%s)"],"Force WWW (www.%s)":[null,"WWW लगाये (www.%s)"],"Strip Index":[null,"Index हटाये "],"Strip index files (html,php)":[null,"index हटाये (html,php)"],"Memory Limit":[null,"स्मृति सीमा"],"Server default":[null,"सर्वर डेफौल्ट"],"Error Level":[null,"त्रुटि स्तर"],"No errors":[null,"त्रुटियों नहीं "],"Show errors":[null,"त्रुटियों को दिखाएं "],"Ban IPs":[null,"IP प्रतिबंध"],"Allow IPs":[null,"IP प्रतिबंध हटाये "],"Raw .htaccess":[null,"कच्चा .htaccess"],"Site URL":[null,"साइट URL "],"Advanced: For management of external sites":[null,"उन्नत: बाहरी साइटों के प्रबंधन के लिए"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>स्थान अमान्य है - जाँच लें कि रास्ते मौजूद है</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>\tकॉन्फ़िगर करने के लिए <code>. Htaccess </ code> फाइल में नहीं लिख सकता है - फाइल अनुमतियाँ जाँच लें </strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>\tनिष्क्रिय: <code>. Htaccess </code> फाइल का स्थान दर्ज करें, मान्य होने के लिए </strong>"],"strip WWW":[null,"WWW हटाये"],"force WWW":[null,"WWW लगायें "],"strip index":[null,"index हटाये "],"memory limit at %dMB":[null,"%dMB स्मृति सीमा पर"],"no errors":[null,"त्रुटियों नहीं "],"show errors":[null,"त्रुटियों को दिखाएं "],"IPs are banned":[null,"IP प्रतिबंधित हैं "],"IPs are allowed":[null,"IP प्रतिबंधित नहीं हैं "]," for external site: <code>%s</code>":[null,"बाहरी साइट के लिए: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"index फाइल हटायें (html,php,asp)"],"Time Limit":[null,"समय सीमा"],"30 seconds":[null,"30 सेकंड"],"1 minute":[null,"1मिनट"],"2 minutes":[null,"2मिनट"],"5 minutes":[null,"5मिनट"],"As long as possible":[null,"यथासंभव समय"],"time limit set as long as possible":[null,"समय सीमा यथासंभव समय तक निर्धारित"],"time limit at %ss":[null,"%ss समय सीमा पर "],"Add new redirection":[null,"नई redirection जोड़ें"],"Your redirection has been added.":[null,"आपका redirection जोड़ दिया गया है."],"Source URL":[null,"स्रोत URL"],"Match":[null,"मेल"],"Action":[null,"कार्य"],"Regular expression":[null,"नियमित अभिव्यक्ति"],"Group":[null,"समूह"],"Add Redirection":[null,"redirection जोड़ें"],"Name":[null,"नाम"],"Tracked":[null,"ट्रैक"],"Whether to track 'hits' to items":[null,"हिट ट्रैक 'के लिए' आइटम को"],"Enabled":[null,"सक्रिय"],"Disabling a group will disable all items contained within it":[null,"एक समूह को अक्षम करने पर इसके अंदर सभी आइटम को निष्क्रिय कर देगा"],"Save":[null,"सुरक्षित करें "],"Cancel":[null,"रद्द करें"],"edit group":[null,"समूह संशोदन "],"disabled":[null,"निष्क्रिय "],"Groups for module":[null,"मॉड्यूल के लिए समूह "],"Module":[null,"मॉड्यूल"],"Search":[null,"खोज"],"go":[null,"जाओ "],"Hits":[null,"हिट्स "],"Select All":[null,"सभी का चयन करें"],"Toggle":[null,"टॉगल"],"Reset Hits":[null,"रिसेट हिट्स "],"Delete":[null,"हटाये "],"Move To":[null,"स्थानांतरित करें "],"Go":[null,"जाए "],"re-order":[null,"पुनःक्रम"],"save order":[null,"क्रम सुरक्षित करें "],"You have no groups in this module.":[null,"आपके पास इस मॉड्यूल में कोई समूह नहीं है."],"Add Group":[null,"समूह जोड़ें"],"Add":[null,"जोड़ें"],"No items have been selected":[null,"कोई आइटम नहीं चुना गया है"],"Are you sure?":[null,"क्या आपको यकीन है?"],"Please wait...":[null,"कृपया प्रतीक्षा करें ..."],"%s by matching %s":[null,"%s मेल से %s"],"Title":[null,"शीर्षक"],"optional":[null,"वैकल्पिक"],"Redirections for group":[null,"समूह के लिए Redirections"],"Last Access":[null,"पिछली बार का प्रवेश "],"Type":[null,"प्रकार"],"URL":[null,"URL"],"Position":[null,"स्थिति"],"You have no redirections.":[null,"आपके पास कोई redirections नहीं है "],"Redirection Log":[null,"Redirection लोंग"],"Bulk Actions":[null,"थोक क्रिया"],"Apply":[null,"लागू करना"],"Filter":[null,"फ़िल्टर"],"Date":[null,"तिथि"],"IP":[null,"IP"],"There are no logs to display!":[null,"यहाँ प्रदर्शित करने के लिए लॉग नहीं हैं!"],"Process Current Logs":[null,"प्रक्रिया वर्तमान लॉग"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"ये कार्य सभी वर्तमान में उपलब्ध लॉगस को प्रभावित करेगा ( आपके खोज वाक्यांश इनलोगस आइटम को प्रतिबंधित करेगा )."],"Delete Logs":[null,"लोगस हटाये "],"Export to CSV":[null,"CSV में निर्यात करें "],"Redirect to":[null,"को निर्देशित "],"Redirected by":[null,"द्वारा निर्देशित "],"for":[null,"के लिए"],"View as":[null,"के रूप में देखें"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"संपादन"],"delete":[null,"मिटाना"],"reset":[null,"रीसेट"],"Modules":[null,"मॉड्यूल"],"Details":[null,"विवरण"],"Groups":[null,"समूह"],"Items":[null,"आइटम"],"Operations":[null,"संचालन"],"Note: Hits are dependant on log entries":[null,"नोट: हिट्स लॉग प्रविष्टियों पर निर्भर करते हैं"],"You have no modules defined yet":[null,"अभी तक कोई मॉड्यूल परिभाषित नहीं किया है "],"Add Module":[null,"मॉड्यूल जोड़ें"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"एक मॉड्यूल एक नियंत्रित तत्व है जो ये निर्धारित करता है कि कैसे redirections संभाला जाए. एक WordPress मॉड्यूल के तत्वों को WordPress, एक Apache मॉड्यूल के तत्वों को <code>. Htaccess </code>द्वारा संभाला जाता है, और ४०४ त्रुटियों कैसे लॉग हो इनको ४०४ मॉड्यूल के तत्वों द्वारा प्रभावित किया जाता है."],"Create":[null,"बनाएँ"],"Options":[null,"विकल्प"],"Auto-generate URL":[null,"URL अपने आप उत्पन्न करें "],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"यह स्वत: यूआरएल उत्पन्न करने के लिए उपयोग किया जाएगा, अगर कोई URL नहीं दिया जाता है. आप $dec$ या hex$ जैसे विशेष टैग का उपयोग कर सकते हैं (या तो दशमलव या हेक्स)"],"IP Lookup Service":[null,"IP लुकअप सेवा"],"Plugin Support":[null,"Plugin सहायता"],"I'm a nice person and I have helped support the author of this plugin":[null,"मैं एक अच्छा इंसान हूँ और मैं इस प्लगइन के लेखक का समर्थन करने में मदद की है"],"Expire Logs":[null,"निश्वासन लॉग"],"days (enter 0 for no expiry)":[null,"दिन (कोई समाप्ति नहीं, के लिए 0 दर्ज करें)"],"RSS Token":[null,"RSS टोकन"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"एक अनूठा टोकन पाठकों के Redirection RSS फ़ीड के उपयोग अनुमति के लिए (स्वतः उत्पन्न करने के लिए रिक्त छोरों)"],"URL Monitoring":[null,"URL निगरानी"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"आप Redirection को यूआरएल में परिवर्तन का पता लगाने और एक स्वचालित redirection करके एक विशिष्ट समूह में भेज सकता है "],"Post &amp; Page URLs":[null,"पोस्ट और पेज URL"],"Don't monitor":[null,"मॉनिटर नहीं करें "],"Monitor new posts":[null,"मॉनिटर नई पोस्ट"],"Category URLs":[null,"श्रेणी ー URL"],"Update":[null,"अपडेट "],"Import":[null,"आयात"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"यहाँ आप एक मौजूदा. Htaccess फ़ाइल, एक CSV फ़ाइल, या एक Redirection XMLफ़ाइल से redirections आयात कर सकते हैं."],"Import into":[null,"आयत करें "],"Upload":[null,"अपलोड"],"Note that the group is ignored when uploading an XML file.":[null,"ध्यान दें कि समूह को नजरअंदाज कर दिया जाएगा, जब एक XML फ़ाइल अपलोड अपलोड होगा ."],"Delete Redirection":[null,"Redirection हटाये या नस्ट करें "],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"यह विकल्प सभी redirections हटा देगा , सभी लॉग हटा देगा, और कोई भी विकल्प जो Redirection प्लगइन के साथ जुड़े उसे भी हटा देगा . सुनिश्चित करें कि आप यह ही करना चाहते है."],"Redirects":[null,"रेदिरेक्ट्स "],"Log":[null,"लोगस "],"Support":[null,"सहायता"],"Redirection Support":[null,"Redirection सहायता"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Redirection उपयोग करने के लिए मुफ्त है - जीवन अद्भुत है और प्यारी! हालांकि, इस प्लगइन के विकास में काफी समय और प्रयाश लगा है, यदि यह आपके लिए उपयोगी साबित हुआ है तो आप इसको और विकसित करने के लिए <strong>एक छोटा सा दान दे</strong> कर मदद कर सकते है "],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"यह मेरे लिए एक प्रोत्साहन के रूप में काम करेगा और मै इसका विकास जारी रख सकूँगा और आपकी सहायता एवं नए सुविधाए और सुझाब शामिल सकूँगा. आपको एक उपयोगी सॉफ्टवेर मिलेगा और मैं इसको बनाने का काम जारी रख सकूँगा. हर कोई जीतेगा "],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"यदि आप एक व्यावसायिक सेटअप में इस प्लगइन का उपयोग कर रहे हैं या कि यह विशेष रूप से उपयोगी है लग रहा है, तो आप एक <strong> वाणिज्यिक दान पर विचार करना चाहे </strong>"],"Individual<br/>Donation":[null,"व्यक्तिगत <br/> दान"],"Commercial<br/>Donation":[null,"वाणिज्यिक <br/> दान"],"Translations":[null,"अनुवाद"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"यदि आप बहुभाषी हैं , तो आप एक अनुवाद दान करने पर विचार करना चाहे ."],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> and <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, in addition to being an individual supporter.":[null,"सभी अनुवादकों, एक व्यक्ति के समर्थक होने के अलावा, उनका लिंक अपनी वेबसाइट <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> और <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a> के प्लगइन मुखपृष्ठ पर रखा जाएगा "],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"अनुवाद उत्पादन का पूर्ण विवरण इस में पाया जा सकता है <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\"> वर्डप्रेस प्लुगिंस का अनुवाद करने के लिए गाइड </a>."]}
 
locale/json/redirection-hr.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2017-09-03 16:16:13+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","x-generator":"GlotPress/2.4.0-alpha","language":"hr","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Cached Redirection detected":[null,"Otkrivena je keširana redirekcija"],"Please clear your browser cache and reload this page":[null,""],"The data on this page has expired, please reload.":[null,"Podaci o ovoj stranici su zastarjeli, molim učitajte ponovo."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,"WordPress nije odgovorio. Moguće je da je došlo do pogreške ili je zahtjev blokiran. Provjerite error_log vašeg poslužitelja."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,"Poslužitelj je odgovorio da je došlo do pogreške \"403 Forbidden\", što može značiti da je zahtjev blokiran. Da li koristite vatrozid ili sigurosni dodatak (plugin)?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,"WordPress je odgovorio neočekivanom porukom. Do obično ukazuje da dodatak (plugin) ili tema generiraju izlaz kada ne bi trebali. Pokušajte deaktivirati ostale dodatke, pa pokušajte ponovo."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,"Ako ništa ne pomaže, pokušajte deaktivirati ostale dodatke - to jednostavno za napraviti, a možete ih brzo ponovo aktivirati. Ostali dodaci ponekad uzrokuju konflikte. "],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,"U svom izvještaju navedite ove pojedinosti {{strong}}i opišite što ste točno radili{{/strong}}."],"If you think Redirection is at fault then create an issue.":[null,""],"This may be caused by another plugin - look at your browser's error console for more details.":[null,"Uzrok ovome bi mogao biti drugi dodatak - detalje potražite u konzoli za pogreške (error cosole) vašeg peglednika."],"An error occurred loading Redirection":[null,"Došlo je do pogreške prilikom učitavanja Redirectiona."],"Loading, please wait...":[null,"Učitavanje, stripte se molim..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,"{{strong}}Fromat CSV datoteke{{/strong}}: {{code}}izvorni URL, odredišni URL{{/code}} - i može biti popraćeno sa {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 za ne, 1 za da)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,"Redirection ne radi. Pokušajte očistiti privremenu memoriju (cache) preglednika i ponovo učitati ovu stranicu."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,"Ako to ne pomogne, otvorite konzolu za pogreške (error console) vašeg preglednika i prijavite {{link}}novi problem{{/link}} s detaljnim opisom."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,""],"Create Issue":[null,""],"Email":[null,"Email"],"Important details":[null,"Važne pojedinosti"],"Need help?":[null,"Trebate li pomoć?"],"First check the FAQ below. If you continue to have a problem then please disable all other plugins and check if the problem persists.":[null,"Prvo provjerite niže navedana često postavljana pitanja (FAQ). Ako se ne riješite problema, deaktivirajte ostale dodatke i provjerite da li je problem i dalje prisutan. "],"You can report bugs and new suggestions in the Github repository. Please provide as much information as possible, with screenshots, to help explain your issue.":[null,"Prijave nedostataka i nove prijedloge možete unijeti putem Github repozitorija. Opišite ih sa što je moguće više pojedinosti i upotpunite sa snimkama zaslona."],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,"Napominjem da podršku pružam koliko mi to dopušta raspoloživo vrijeme. Ne osiguravam plaćenu podršku."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}}.":[null,"Želite li poslati informacije, ali ne putem javno dostupnog repozitorija, pošaljite ih izravno na {{email}}email{{/email}}."],"Can I redirect all 404 errors?":[null,"Mogu li preusmjeriti sve 404 pogreške."],"No, and it isnt advised that you do so. A 404 error is the correct response to return for a page that doesn't exist. If you redirect it you are indicating that it once existed, and this could dilute your site.":[null,"Ne, niti je to preporučljivo. Greška 404 je ispravan odgovor na zahtjev da se prikaže nepostojeća stranica. Preusmjeravanjem takvog zahtjeva poručujete da je tražena stranica nekada postojala."],"Pos":[null,""],"410 - Gone":[null,"410 - Gone"],"Position":[null,"Pozicija"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,""],"Apache Module":[null,"Apache modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,"Unesite potunu putanju i naziv datoteke ako želite da Redirection automatski\nažurira {{code}}.htaccess{{/code}}."],"Import to group":[null,"Importirajte u grupu"],"Import a CSV, .htaccess, or JSON file.":[null,"Importirajte a CSV, .htaccess, ili JSON datoteku."],"Click 'Add File' or drag and drop here.":[null,"Kliknite 'Dodaj datoteku' ili je dovucite i ispustite ovdje."],"Add File":[null,"Dodaj datoteku"],"File selected":[null,"Odabrana datoteka"],"Importing":[null,"Importiranje"],"Finished importing":[null,"Importiranje dovršeno"],"Total redirects imported:":[null,"Ukupan broj importiranih redirekcija:"],"Double-check the file is the correct format!":[null,"Provjerite još jednom da li je format datoteke ispravan!"],"OK":[null,"OK"],"Close":[null,"Zatvori"],"All imports will be appended to the current database.":[null,"Sve importirano biti će dodano postojećoj bazi. "],"Export":[null,"Eksport"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,"Eksport u CSV, Apache .htaccess, Nginx, ili Redirection JSON (koji sadrži sva preusmjeravanja i grupe)."],"Everything":[null,"Sve"],"WordPress redirects":[null,"WordPressova preusmjeravanja"],"Apache redirects":[null,"Apache preusmjeravanja"],"Nginx redirects":[null,"Nginx preusmjeravaja"],"CSV":[null,"CSV"],"Apache .htaccess":[null,"Apache .htaccess"],"Nginx rewrite rules":[null,"Nginx rewrite rules"],"Redirection JSON":[null,"Redirection JSON"],"View":[null,"Pogled"],"Log files can be exported from the log pages.":[null,"Log datoteke mogu biti eksportirane sa log stranica."],"Import/Export":[null,"Import/Eksport"],"Logs":[null,"Logovi"],"404 errors":[null,"404 pogreške"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,"Navedite {{code}}%s{{/code}}, i pojasnite što ste točno radili"],"I'd like to support some more.":[null,"Želim dodatno podržati."],"Support 💰":[null,"Podrška 💰"],"Redirection saved":[null,"Redirekcija spremljena"],"Log deleted":[null,"Log obrisan"],"Settings saved":[null,"Postavke spremljene"],"Group saved":[null,"Grupa spremljena"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","Jeste li sigurni da želite obrisati ovu stavku?","Jeste li sigurni da želite obrisati ove stavke?","Jeste li sigurni da želite obrisati ove stavke?"],"pass":[null,"pass"],"All groups":[null,"Sve grupe"],"301 - Moved Permanently":[null,"301 - Trajno premješteno"],"302 - Found":[null,"302 - Pronađeno"],"307 - Temporary Redirect":[null,"307 - Privremena redirekcija"],"308 - Permanent Redirect":[null,"308 - Trajna redirekcija"],"401 - Unauthorized":[null,"401 - Neovlašteno"],"404 - Not Found":[null,"404 - Nije pronađeno"],"Title":[null,"Naslov"],"When matched":[null,""],"with HTTP code":[null,"sa HTTP kodom"],"Show advanced options":[null,"Prikaži napredne opcije"],"Matched Target":[null,""],"Unmatched Target":[null,""],"Saving...":[null,"Spremam..."],"View notice":[null,"Pogledaj obavijest"],"Invalid source URL":[null,"Neispravan izvorni URL"],"Invalid redirect action":[null,"Nesipravna akcija preusmjeravanja"],"Invalid redirect matcher":[null,""],"Unable to add new redirect":[null,"Ne mogu dodati novu redirekciju"],"Something went wrong 🙁":[null,"Nešto je pošlo po zlu 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"Nešto sam pokušao i nije uspjelo. Moguće je da je uzrok privremen. Ako pokušaš ponovo moglo bi uspjeti - ne bi li to bilo sjajno?"],"It didn't work when I tried again":[null,"Nije uspjelo kada sam pokušao ponovo"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"Log entries (%d max)":[null,"Log zapisi (maksimalno %d)"],"Remove WWW":[null,"Ukloni WWW"],"Add WWW":[null,"Dodaj WWW"],"Search by IP":[null,"Pretraga po IP"],"Select bulk action":[null,"Odaberi grupnu radnju"],"Bulk Actions":[null,"Grupne radnje"],"Apply":[null,"Primijeni"],"First page":[null,"Prva stranica"],"Prev page":[null,"Prethodna stranica"],"Current Page":[null,"Tekuća stranica"],"of %(page)s":[null,""],"Next page":[null,"Sljedeća stranica"],"Last page":[null,"Zadnja stranica"],"%s item":["%s items","%s stavka","%s stavke","%s stavki"],"Select All":[null,"Odaberi sve"],"Sorry, something went wrong loading the data - please try again":[null,"Oprostite, nešto je pošlo po zlu tokom učitavaja podataka - pokušajte ponovo"],"No results":[null,"Bez rezultata"],"Delete the logs - are you sure?":[null,"Brisanje logova - jeste li sigurni?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"Postojeći logovi će nestati nakon brisanja. Želite li brisanje automatizirati, u opcijama možete postaviti raspored automatskog brisanja."],"Yes! Delete the logs":[null,"Da! Obriši logove"],"No! Don't delete the logs":[null,"Ne! Ne briši logove"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"_blank\"{{/code}} to your link.":[null,""],"Frequently Asked Questions":[null,""],"You've supported this plugin - thank you!":[null,""],"You get useful software and I get to carry on making it better.":[null,""],"Forever":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"http://urbangiraffe.com":[null,""],"John Godley":[null,""],"Manage all your 301 redirects and monitor 404 errors":[null,""],"http://urbangiraffe.com/plugins/redirection/":[null,""],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Support":[null,"Podrška"],"404s":[null,""],"Log":[null,""],"Delete Redirection":[null,""],"Upload":[null,"Prijenos"],"Import":[null,"Uvezi"],"Update":[null,"Ažuriraj"],"Auto-generate URL":[null,""],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,""],"Don't monitor":[null,""],"Monitor changes to posts":[null,""],"404 Logs":[null,""],"(time to keep logs for)":[null,""],"Redirect Logs":[null,""],"I'm a nice person and I have helped support the author of this plugin":[null,""],"Plugin Support":[null,""],"Options":[null,"Opcije"],"Two months":[null,""],"A month":[null,""],"A week":[null,""],"A day":[null,""],"No logs":[null,""],"Delete All":[null,""],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,""],"Add Group":[null,""],"Search":[null,"Traži"],"Groups":[null,""],"Save":[null,"Spremi"],"Group":[null,""],"Match":[null,""],"Add new redirection":[null,""],"Cancel":[null,"Prekini"],"Download":[null,"Preuzimanje"],"Redirection":[null,""],"Settings":[null,"Postavke izbornika"],"Automatically remove or add www to your site.":[null,""],"Default server":[null,""],"Do nothing":[null,""],"Error (404)":[null,""],"Pass-through":[null,""],"Redirect to random post":[null,""],"Redirect to URL":[null,""],"Invalid group when creating redirect":[null,""],"Show only this IP":[null,""],"IP":[null,""],"Source URL":[null,""],"Date":[null,"Datum"],"Add Redirect":[null,""],"All modules":[null,""],"View Redirects":[null,""],"Module":[null,"Modul"],"Redirects":[null,""],"Name":[null,""],"Filter":[null,""],"Reset hits":[null,""],"Enable":[null,"Uključi"],"Disable":[null,""],"Delete":[null,"Izbriši"],"Edit":[null,"Uredi"],"Last Access":[null,""],"Hits":[null,""],"URL":[null,""],"Type":[null,"Tip"],"Modified Posts":[null,""],"Redirections":[null,""],"User Agent":[null,"Korisnički agent"],"URL and user agent":[null,""],"Target URL":[null,""],"URL only":[null,""],"Regex":[null,""],"Referrer":[null,""],"URL and referrer":[null,""],"Logged Out":[null,"Odjavljen"],"Logged In":[null,""],"URL and login status":[null,""]}
 
locale/json/redirection-hu_HU.json DELETED
@@ -1 +0,0 @@
1
- {"":{"project-id-version":"Redirect","report-msgid-bugs-to":"","pot-creation-date":"2009-02-23 20:25-0300","po-revision-date":"","last-translator":"Szépe Viktor","language-team":"dassad.com <dassad10@gmail.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Hungarian","x-poedit-country":"ROMANIA","x-poedit-sourcecharset":"utf-8","x-poedit-basepath":"c:/temp/redirection/","x-poedit-keywordslist":"__;_e"},"<p style=\"color: red\">You are not allowed access to this resource</p>":[null,"<p style=\"color: red\">Nincs jogosultságod az oldal megtekintéséhez</p>"],"<p style=\"color: red\">That function is not defined</p>":[null,"<p style=\"color: red\">A funkció nincs definiálva</p>"],"Sorry, but your redirection was not created":[null,"Sajnáljuk, az átiránítás nem jött létre"],"Failed to retrieve group data":[null,"Csoport információk lekérése sikertelen"],"Failed to retrieve module data":[null,"Modul információk lekérése sikertelen"],"How many widgets would you like?":[null,"Hány widgetet szeretnél?"],"Save":[null,"Mentés"],"Redirection Help":[null,"Átirányítás segítség"],"Redirection Documentation":[null,"Átirányítás dokumentáció"],"Redirection Support Forum":[null,"Átirányítás támogató fórum"],"Redirection Bug Tracker":[null,"Ismert hibák"],"Redirection FAQ":[null,"Átirányítás gyakori kérdések"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"Kérlek olvasd el a dokumentációt és a Gyakori Kérdéseket, valamint ellenőrizd az ismert hibákat mielőtt kérdeznél"],"Redirection":[null,"Átirányítás"],"Your module was successfully created":[null,"Modul sikeresen létrehozva"],"Your module was not created - did you provide a name?":[null,"Modul létehozása sikertelen. Adtál neki nevet?"],"Your options were updated":[null,"Opciók sikeresen mentve"],"Redirection data has been deleted and the plugin disabled":[null,"Átirányítási információk törölve, és a bővítmény kikapcsolva"],"No items were imported":[null,"Nincs importált információ"],"Your logs have been deleted":[null,"Napló sikeresen törölve"],"Your group was added successfully":[null,"Csoport sikeresen hozzáadva"],"Please specify a group name":[null,"Kérlek adj meg egy csoport nevet"],"module_%d.csv":[null,"modul_%d.csv"],"module_%d.xml":[null,"modul_%d.xml"],"%s imported on %s at %s":[null,"%s importálva %s a %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"XML importálása csak PHP5 verzióval lehetséges, a te verziód PHP4"],"URL and login status":[null,"URL és bejelentkezés állapot"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"A cél URL a következő URL-ek közül kerül ki, attól függően, hogy a felhasználó be van jelentkezve vagy nincs. Az URL mező üresen hagyása azt jelenti, hogy a felhasználó nem lesz átirányítva."],"Logged In":[null,"Bejelentkezve"],"Logged Out":[null,"Kijelentkezve"],"URL and referrer":[null,"URL és forrás"],"Referrer":[null,"Forrás"],"Regex":[null,"Regex kifejezés"],"HTTP Code":[null,"HTTP kód"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"A látogató átirányításra kerül, ha a forrása (referrer) illeszkedik a megadottal. Meghatározhatsz egy <em>illeszkedő</em> URL-t, ahová elküldjök a látogatókat, ha illeszkedik, és egy <em>nem illeszkedőt</em>, ha nem illeszkedik. Ha üresen hagyod, azt jelenti, hogy a látogatót nem irányítjuk át."],"Matched":[null,"Illeszkedik"],"Not matched":[null,"Nem illeszkedik"],"URL only":[null,"Csak URL"],"Target URL":[null,"Cél URL"],"URL and user agent":[null,"URL és User Agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"User Agent"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"A látogató át lesz irányitva az alap URL-ről, ha a User Agent illeszkedik.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"404 Errors":[null,"404 hibák"],"Redirections":[null,"Átirányítások"],"Modified posts":[null,"Módosított bejegyzések"],"Strip WWW":[null,"WWW levágása"],"Force WWW":[null,"WWW kényszerítése"],"Strip index.php":[null,"index.php levágása"],"Previous":[null,"Előző"],"Next":[null,"Következő"],"%d per-page":[null,"%d oldalanként"],"Displaying %s&#8211;%s of %s":[null,"Megjelenítés %s&#8211;%s a %s"],"Redirect to URL":[null,"Átirányítás URL-re"],"Redirect to random post":[null,"Átirányítás véletlenszerű bejegyzésre"],"Pass-through":[null,"Átlépés"],"Error (404)":[null,"Hiba (404)"],"Do nothing":[null,"Ne tegyél semmit"],"Log 404s":[null,"404-es hibák naplózása"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Letiltva: Engedélyezned kell a <a href=\"options-permalink.php\">permalinkeket</a> használat előtt</strong>"],"<small>No options have been set</small>":[null,"<small>Nincs beállítás megadva</small>"],"Location":[null,"Hely"],"WordPress is installed in: <code>%s</code>":[null,"WordPress telepítve a: <code>%s</code>"],"Canonical":[null,"Canonical"],"Leave as is":[null,"Hagyd ahogyan van"],"Strip WWW (%s)":[null,"WWW levágása (%s)"],"Force WWW (www.%s)":[null,"WWW kényszerítése (www.%s)"],"Strip Index":[null,"Index levágása"],"Strip index files (html,php)":[null,"Index fileok levágása (html,php)"],"Memory Limit":[null,"Memória korlátozása"],"Server default":[null,"Szerver alapbeállítás"],"Error Level":[null,"Hiba szint"],"No errors":[null,"Nincs hiba"],"Show errors":[null,"Hibák mutatása"],"Ban IPs":[null,"IP-k tiltása"],"Allow IPs":[null,"IP-k engedélyezése"],"Raw .htaccess":[null,"Nyers .htaccess"],"Site URL":[null,"Oldal URL"],"Advanced: For management of external sites":[null,"Haladó: Külső oldalak kezelésére"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>A hely hibás. Kérlek ellenőrízd, hogy létezik-e</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Írás hiba a <code>.htaccess</code> fileba - ellenőrízd az engedélyeket</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Letiltva: Adj meg egy <code>.htaccess</code> file elérhetőséget</strong>"],"strip WWW":[null,"WWW levágása"],"force WWW":[null,"WWW kényszerítése"],"strip index":[null,"index levágása"],"memory limit at %dMB":[null,"Memória korlát: %dMB"],"no errors":[null,"nincs hiba"],"show errors":[null,"hibák mutatása"],"IPs are banned":[null,"IP-k tiltva"],"IPs are allowed":[null,"IP-k engedélyezve"]," for external site: <code>%s</code>":[null,"külső oldalak: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"Index fájlok levágása (html,php,asp)"],"30 seconds":[null,"30 másodperc"],"1 minute":[null,"1 perc"],"2 minutes":[null,"2 perc"],"5 minutes":[null,"5 perc"],"As long as possible":[null,"Ameddig csak lehetséges"],"time limit set as long as possible":[null,"idő korlát, ameddig csak lehetséges"],"time limit at %ss":[null,"idő korlát %ss"],"Add new redirection":[null,"Új átirányítás hozzáadása"],"Your redirection has been added.":[null,"Átirányítás hozzáadva"],"Source URL":[null,"Forrás URL"],"Match":[null,"Találat"],"Action":[null,"Akció"],"Regular expression":[null,"Regex kifejezés"],"Group":[null,"Csoport"],"Add Redirection":[null,"Új átirányítás"],"Name":[null,"Név"],"Tracked":[null,"Lekövetve"],"Whether to track 'hits' to items":[null,"Találatok lekövetése az elemekre"],"Enabled":[null,"Engedélyezve"],"Disabling a group will disable all items contained within it":[null,"Egy csoport letiltása, letiltja a benne található elemeket is"],"Cancel":[null,"Mégsem"],"edit group":[null,"csoport szerkesztése"],"disabled":[null,"letiltva"],"Groups for module":[null,"A modulhoz tartozó csoportok"],"Module":[null,"Modul"],"Search":[null,"Keresés"],"go":[null,"mehet"],"Hits":[null,"Találatok"],"Select All":[null,"Összes kijelölése"],"Toggle":[null,"Változtatás"],"Reset Hits":[null,"Találatok számolásának újraindítása"],"Delete":[null,"Törlés"],"Move To":[null,"Áthelyezés"],"re-order":[null,"újrarendezés"],"save order":[null,"sorrend mentése"],"You have no groups in this module.":[null,"Nincs csoport ebben a modulban"],"Add Group":[null,"Csoport hozzáadása"],"Add":[null,"Hozzáadás"],"Please wait...":[null,"Kérlek várj..."],"Are you sure?":[null,"Biztos vagy benne?"],"No items have been selected":[null,"Nem választottál elemet"],"%s by matching %s":[null,"%s találat %s"],"Title":[null,"Cím"],"optional":[null,"opcionális"],"Redirections for group":[null,"Csoportok átirányítás"],"Go":[null,"Mehet"],"Last Access":[null,"Utolsó hozzáférés"],"Type":[null,"Típus"],"URL":[null,"URL"],"Position":[null,"Pozíció"],"You have no redirections.":[null,"Nincs egy átirányítás se."],"Redirection Log":[null,"Átirányítási napló"],"Bulk Actions":[null,"Csoportos szerkesztés"],"Apply":[null,"Alkalmazás"],"Filter":[null,"Szűrő"],"Date":[null,"Dátum"],"IP":[null,"IP"],"There are no logs to display!":[null,"Nincsenek naplók!"],"Process Current Logs":[null,"Jelenlegi naplók feldolgozása"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Ezek a beállítások módosítani fogják a meglévő naplókat is"],"Delete Logs":[null,"Naplók törlése"],"Export to CSV":[null,"Mentés CSV-be"],"Redirect to":[null,"Átirányítás ide "],"Redirected by":[null,"Átirányítva"],"for":[null,"a"],"View as":[null,"Megtekintés mint"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"szerkesztés"],"delete":[null,"törlés"],"reset":[null,"újraindítás"],"Modules":[null,"Modulok"],"Details":[null,"Részletek"],"Groups":[null,"Csoportok"],"Items":[null,"Elemek"],"Operations":[null,"Műveletek"],"Note: Hits are dependant on log entries":[null,"Figyelem: A találatok a naplók bejegyzésektől függenek"],"You have no modules defined yet":[null,"Nincs modul definiálva"],"Add Module":[null,"Modul hozzáadása"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Egy modul a vezérlő egysége az átirányítások kezelésének és végrehajtásának. Az elemeket egy WordPress modulban a WordPress kezeli, az elemek az Apache modulban a <code>.htaccess</code>, és az elemek egy 404 modulban a 404 hibák naplózását befolyásolják."],"Create":[null,"Készítés"],"Options":[null,"Beállítások"],"Auto-generate URL":[null,"URL-ek automatikus generálása"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"URL-ek automatikus generálása, ha URL nincs megadva. Használhatod a $dec$ és $hex$ tagokat, ha egyedi azonosítót szeretnél hozzáadni."],"IP Lookup Service":[null,"IP kikereő szolgáltatás"],"Plugin Support":[null,"Bővítmény támogatás"],"I'm a nice person and I have helped support the author of this plugin":[null,"Rendes vagyok, és segítek a bővítmény készítőjének"],"Expire Logs":[null,"Naplók elévülése"],"days (enter 0 for no expiry)":[null,"napok (0 ha végtelen)"],"RSS Token":[null,"RSS Token"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Egy egyedi TOKEN az átirányítás RSS csatorna olvasásához. Hagyd üresen az automatikus generáláshoz."],"URL Monitoring":[null,"URL-ek figyelése"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Az Átirányítás bővítmény nyomon követheti az URL-ek változását, és készíthet automatikus átirányítást a megfelelő csoportban."],"Post &amp; Page URLs":[null,"Bejegyzés &amp; Oldal URL-ek"],"Don't monitor":[null,"Ne figyeld"],"Monitor new posts":[null,"Új bejegyzések figyelése"],"Category URLs":[null,"Kategória URL-ek"],"Update":[null,"Frissítés"],"Import":[null,"Importálás"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Itt importálhatod meglévő átirányításaidat egy meglévő .htaccess fájlból, CSV fájlból vagy XML fájlból."],"Import into":[null,"Importálás ebbe "],"Upload":[null,"Feltöltés"],"Note that the group is ignored when uploading an XML file.":[null,"Figyelem: A csoportot figyelmen kívül hagyjuk, ha XML fájlt töltesz fel."],"Delete Redirection":[null,"Átirányítás törlése"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Az opció választásával minden átirányítás, napló és bármely kapcsolódó beállítás törlődni fog. Győződj meg róla, hogy ezt kívánod."],"Redirects":[null,"Átirányítások"],"Log":[null,"Napló"],"Support":[null,"Támogatás"],"Redirection Support":[null,"Átirányítás támogatás"],"Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested.":[null,"A bővítmény létrehozásához rengeteg időre és türelemre volt szükségünk. Ha hasznosnak találtad, <strong>adományozhatsz a fejlesztőnek egy kis öszeget, 8 amerikai dollárt</strong>. Ez továbbra is ösztönözni fog új bővítmények készítésére, a számtalan támogatással eltöltött óra eltöltésére, és a bővítési javasolatok megvalósítására."],"Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>.":[null,"Másként, ha lehetőséged van, besegíthetsz a plugin lefordításával különböző nyelvekre. Minden szükséges információt és eszközt megtalálsz <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">IDE</a> kattintva."],"Other plugins":[null,"Más bővítmények"],"You may also be interested in some of my other plugins:":[null,"Talán néhány más bővítmény is érdekel:"],"HeadSpace":[null,"HeadSpace"],"The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!":[null,"A legerőteljesebb SEO meta-adat kezelő és általános célú Wordpress bővítmény. Kivált hat vagy hét bővítményt!"],"Search Unleashed":[null,"Search Unleashed"],"Attractive searches that go beyond the default WordPress search and increase the usefulness of your site.":[null,"Vonzzó keresések, amelyek túlmutatnak az alap WordPress keresésen, és növelik a honlap hasznosságát."],"Sniplets":[null,"Sniplets"],"very flexible and powerful text insertion that allows you to insert what you want, wherever you want it.":[null,"könnyen alkalmazható és hatékony szöveg beillesztés, amely lehetővé teszi bármi beillesztését bárhová."],"This notice will only be shown at periodic intervals.":[null,"Ez az üzenet, csak időnként jelenik meg."]}
 
locale/json/redirection-id_ID.json DELETED
@@ -1 +0,0 @@
1
- {"":{"project-id-version":"Redirection","report-msgid-bugs-to":"","pot-creation-date":"2009-07-24 19:46+0700","po-revision-date":"","last-translator":"Gon <freecs_g@yahoo.com>","language-team":"Septian Fujianto <cuteoliv@gmail.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Indonesian","x-poedit-country":"INDONESIA","x-poedit-sourcecharset":"utf-8","x-poedit-keywordslist":"__;_e","x-poedit-basepath":".","x-poedit-searchpath-0":"D:\\redirection"},"Sorry, but your redirection was not created":[null,"Maaf, pengalihan yang anda buat tidak berhasil dibuat"],"Settings":[null,"Pengaturan"],"Redirection Help":[null,"Bantuan pengalihan"],"Redirection Documentation":[null,"Dokumentasi Pengalihan"],"Redirection Support Forum":[null,"Forum pendukung Pengalihan"],"Redirection Bug Tracker":[null,"Pelacak bug Pengalihan"],"Redirection FAQ":[null,"FAQ Redirection"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"Tolong baca dokumentasi dan FAQ, dan periksa pelacak bug, sebelum bertanya."],"Redirection":[null,"Pengalihan"],"Your module was successfully created":[null,"Modul anda berhasil dibuat"],"Your module was not created - did you provide a name?":[null,"Modul anda tidak dibuat - apakah anda memberikannya sebuah nama?"],"Your options were updated":[null,"Pilihan anda sudah diperbaharui"],"Redirection data has been deleted and the plugin disabled":[null,"Data pengalihan telah dihapus dan plugin telah dimatikan"],"No items were imported":[null,"Tidak ada barang yang diimpor"],"Your logs have been deleted":[null,"Log anda telah dihapus"],"Your group was added successfully":[null,"Grup anda telah berhasil ditambahkan"],"Please specify a group name":[null,"Tolong spesifikkan sebuah nama grup"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s diimpor pada %s di %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"Pengimporan XML hanya tersedia pada PHP5 - anda memakai PHP4"],"URL and login status":[null,"URL dan status login"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Target URL akan dipilih dari salah satu url ini, tergantung bila pengguna masuk atau keluar. meninggalkan URL kosong berarti pengguna tidak dialihkan."],"Logged In":[null,"Masuk"],"Logged Out":[null,"Keluar"],"URL and referrer":[null,"URL dan pereferensi"],"Referrer":[null,"Pereferensi"],"Regex":[null,"Regex"],"HTTP Code":[null,"Kode HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Pengunjung akan dialihkan dari URL asal bila pereferensi cocok. Anda bisa menspesifikasikan <em>cocok</em> URL target sebagai alamat untuk mengirim pengunjung kalau memang cocok, dan <em>tidak cocok</em> kalau tidak cocok. Meninggalkan URL kosong berarti pengunjung tidak dialihkan."],"Matched":[null,"Cocok"],"Not matched":[null,"Tidak cocok"],"URL only":[null,"URL saja"],"Target URL":[null,"URL target"],"URL and user agent":[null,"URL dan agent pengguna"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"Agen pengguna"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Pengunjung akan dialihkan dari URL sumber bila agen pemgguna cocok. Anda bisa menspesifikkan <em>kecocokan</em> URL target sebagai alamat untuk mengirim pengunjung bila cocok, dan <em>tidak cocok</em> bila tidak cocok. Membiarkan URL kosong berarti pengunjung tidak dialihkan. <strong>Segala kecocokan dijalankan sebagi ekspresi reguler</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"404 Errors":[null,"Eror 404"],"Redirections":[null,"Pengalihan"],"Modified posts":[null,"Postingan modifikasi"],"Strip WWW":[null,"Buang WWW"],"Force WWW":[null,"Paksa WWW"],"Strip index.php":[null,"Buang index.php"],"Previous":[null,"Sebelumnya"],"Next":[null,"Selanjutnya"],"%d per-page":[null,"%d per-halaman"],"Displaying %s&#8211;%s of %s":[null,"Menampilkan %s&#8211;%s dari %s"],"Redirect to URL":[null,"Dialihkan ke URL"],"Redirect to random post":[null,"Dialihkan ke posting acak"],"Pass-through":[null,"Melalui"],"Error (404)":[null,"Eror (404)"],"Do nothing":[null,"Tidak melakukan apapun"],"Log 404s":[null,"Log 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Dimatikan: anda harus mengaktifkan <a href=\"options-permalink.php\">permalinks</a> sebelum menggunakannya</strong>"],"<small>No options have been set</small>":[null,"<small>Tidak ada pilihan yang dipilih</small>"],"Location":[null,"Lokasi"],"WordPress is installed in: <code>%s</code>":[null,"WordPress diinstall dalam: <code>%s</code>"],"Canonical":[null,"Kanonikal"],"Leave as is":[null,"Biarkan"],"Strip WWW (%s)":[null,"Buang WWW (%s)"],"Force WWW (www.%s)":[null,"Paksa WWW (www.%s)"],"Strip Index":[null,"Paksa Indeks"],"Strip index files (html,php)":[null,"Paksa file indeks (html,php)"],"Memory Limit":[null,"Limit memori"],"Server default":[null,"Server standar"],"Error Level":[null,"Eror level"],"No errors":[null,"Tak ada eror"],"Show errors":[null,"Tunjukkan eror"],"Ban IPs":[null,"Larang IP"],"Allow IPs":[null,"Bolehkan IP"],"Raw .htaccess":[null,".htaccess asli"],"Site URL":[null,"URL situs"],"Advanced: For management of external sites":[null,"Lanjutan: Untuk manajemen situs luar"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Lokasi salah - periksa jalur yang ada</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Tidak bisa menulis untuk mengkonfigurasi file <code>.htaccess</code> - periksa perizinan file</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Dimatikan: masukkan lokasi file <code>.htaccess</code> untuk ini agar berlaku</strong>"],"strip WWW":[null,"buang WWW"],"force WWW":[null,"paksa WWW"],"strip index":[null,"paksa index"],"memory limit at %dMB":[null,"Batas memori pada %dMB"],"no errors":[null,"Tak ada eror"],"show errors":[null,"Tunjukkan eror"],"IPs are banned":[null,"IP telah dilarang"],"IPs are allowed":[null,"IP diperbolehkan"]," for external site: <code>%s</code>":[null," Untuk situs luar: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"Buang file indeks (html,php,asp)"],"Time Limit":[null,"Batas waktu"],"30 seconds":[null,"30 detik"],"1 minute":[null,"1 menit"],"2 minutes":[null,"2 menit"],"5 minutes":[null,"5 menit"],"As long as possible":[null,"Selama mungkin"],"time limit set as long as possible":[null,"Batas waktu dipasang selama mungkin"],"time limit at %ss":[null,"batas waktu pada %ss"],"Add new redirection":[null,"Tambah pengalihan baru"],"Your redirection has been added.":[null,"Pengalihan anda telah ditambahkan."],"Source URL":[null,"URL sumber"],"Match":[null,"Cocok"],"Action":[null,"Aksi"],"Regular expression":[null,"Ekspresi umum"],"Group":[null,"Grup"],"Add Redirection":[null,"Tambahkan pengalihan"],"Name":[null,"Nama"],"Tracked":[null,"Pelacak"],"Whether to track 'hits' to items":[null,"Bila ingin melacak 'tekan' pada barang"],"Enabled":[null,"Diaktifkan"],"Disabling a group will disable all items contained within it":[null,"Menonaktifkan sebuah grup akan menonaktifkan sebua barang yang ada didalamnya"],"Save":[null,"Simpan"],"Cancel":[null,"Batal"],"edit group":[null,"ubah grup"],"disabled":[null,"Nonaktifkan"],"Groups for module":[null,"Grup untuk modul"],"Module":[null,"Modul"],"Search":[null,"Cari"],"go":[null,"go"],"Hits":[null,"Tekan"],"Select All":[null,"Pilih semua"],"Toggle":[null,"Toogel"],"Reset Hits":[null,"Tekan ulang"],"Delete":[null,"Hapus"],"Move To":[null,"Pindah ke"],"Go":[null,"Go"],"re-order":[null,"Atur ulang"],"save order":[null,"save pengaturan"],"You have no groups in this module.":[null,"Anda tidak punya grup dalam modul ini"],"Add Group":[null,"Tambah grup"],"Add":[null,"Add"],"No items have been selected":[null,"Tak ada barang yang terpilih"],"Are you sure?":[null,"Anda yakin?"],"Please wait...":[null,"Harap menunggu..."],"%s by matching %s":[null,"%s dengan mencocokkan%s"],"Title":[null,"Judul"],"optional":[null,"Opsional"],"Redirections for group":[null,"Pengalihan untuk grup"],"Last Access":[null,"Akses terakhir"],"Type":[null,"Ketik"],"URL":[null,"URL"],"Position":[null,"Posisi"],"You have no redirections.":[null,"Kamu tidak punya pengalihan."],"Redirection Log":[null,"Log pengalihan"],"Bulk Actions":[null,"Aksi keseluruhan"],"Apply":[null,"Lakukan"],"Filter":[null,"Saring"],"Date":[null,"Tanggal"],"IP":[null,"IP"],"There are no logs to display!":[null,"Tak ada log untuk ditampilkan!"],"Process Current Logs":[null,"Memproses Log ini"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Aksi ini akan berefek pada log yang tersedia sekarang (contoh. frase pencarian anda akan melarang barang log)."],"Delete Logs":[null,"Hapus Log"],"Redirect to":[null,"Alihkan ke"],"Redirected by":[null,"Dialihkan oleh"],"for":[null,"untuk"],"View as":[null,"Lihat sebagai"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"ubah"],"delete":[null,"hapus"],"reset":[null,"ulang"],"Modules":[null,"Module"],"Details":[null,"Detail"],"Groups":[null,"Group"],"Items":[null,"Barang"],"Operations":[null,"Operasi"],"Note: Hits are dependant on log entries":[null,"Catatan: Hits tergantung pada entri log"],"You have no modules defined yet":[null,"Anda tidak memiliki modul ditetapkan saat ini"],"Add Module":[null,"Tambah modul"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Sebuah modul mengontrol elemen yang mempengaruhi bagaimanan pengalihan dilakukan. Elemen pada sebuah modul WordPress diatur oleh WordPress, elemen pada sebuah modul Apache diatur oleh <code>.htaccess</code>, dan elemen pada sebuah 404 mempengaruhi bagaimana eror 404 ter log"],"Create":[null,"Buat"],"Options":[null,"Pengaturan"],"Auto-generate URL":[null,"Pemunculan-otomatis URL "],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Ini akan digunakan untuk membuat otomatis sebuah URL bila tidak ada URL yang diberikan. Anda bisa menggunakan tag spesial $dec$ atau $hex$ untuk memiliki sebuah ID unik dimasukkan (desimal atau hex)"],"IP Lookup Service":[null,"Service pelihat IP"],"Plugin Support":[null,"Bantuan Plugin"],"I'm a nice person and I have helped support the author of this plugin":[null,"Saya orang baik dan saya akan membantu menolong pembuat plugin ini"],"Expire Logs":[null,"Log kadaluarsa"],"days (enter 0 for no expiry)":[null,"hari (masukkan 0 bila tidak ada tenggat waktu )"],"RSS Token":[null,"Token RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Sebuah token unik memperbolehkan pembaca feed mengakses ke pengalihan RSS (tinggalkan kosong agar tercipta otomatis)"],"URL Monitoring":[null,"Pemantauan URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Anda bisa memiliki Pengalihan mendeteksi perubahan dalam URL dan memiliki pengalihan otomatis tercipta dalam grup spesifik."],"Post &amp; Page URLs":[null,"Post &amp; URL halaman"],"Don't monitor":[null,"Jangan pantau"],"Monitor new posts":[null,"Pantau post baru"],"Category URLs":[null,"Kategoti URL"],"Update":[null,"Perbaharui"],"Import":[null,"Impor"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Disini anda bisa mengimpor pengalihan dari yang sudah ada di file .htaccess, CSV, atau XML Pengalihan."],"Import into":[null,"Impor kedalam"],"Upload":[null,"Unggah"],"Note that the group is ignored when uploading an XML file.":[null,"Ketahui bila grup diabaikan saat pengungguhan file XML."],"Delete Redirection":[null,"Hapus pengalihan"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Memilih pilihan ini akan menghapus semua pengalihan, semua log, dan pilihan apapun yang berhubungan dengan plugin Pengalihan. Yakinlah ini yang ingin dilakukan."],"Redirects":[null,"Alihkan"],"Log":[null,"Log"],"Support":[null,"Bantuan"],"Redirection Support":[null,"Bantuan Pengalihan"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Pengalihan gratis digunakan - hidup ini indah dan penuh cinta! Namun, itu membutuhkan banyka waktu dan tenaga untuk mengembangkannya dan bila itu berguna anda bisa membantu pengembangannya dengan <strong>menyumbang sedikit donasi</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Ini menjadi insentif buat saya untuk terus mengembangkan, menyediakan bantuan, dan menambahkan fitur baru. Anda mendapatkan software berharga dan Saya bisa membuatkannya. Semuanya menang. "],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Jika anda menggunakan plugin ini secara komersil, atau merasai sangatertolong, anda bisa mempertimbangkan melakukan <strong>donasi komersial</strong>."],"Individual<br/>Donation":[null,"Donasi<br/>Individual"],"Commercial<br/>Donation":[null,"Donasi<br/>Komersil"],"Translations":[null,"Terjemahan"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Jika anda bisa berbagai macam bahasa mungkin anda tertarik untuk mendonasikan sebuah terjemahan:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> and <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, in addition to being an individual supporter.":[null,"Semua penerjemah akan memiliki link ke website mereka pada halaman muka website plugin pada <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> dan <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, Sebagai bantuan untuk individu."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Detail lengkap mengenai pembuatan terjemahan dapat ditemukan di <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">pandua untuk menterjemahkan plugin WordPress</a>."]}
 
locale/json/redirection-it_IT.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-08-21 21:45:45+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"it","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,""],"Never cache":[null,""],"An hour":[null,""],"Redirect Cache":[null,""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,""],"Are you sure you want to import from %s?":[null,""],"Plugin Importers":[null,""],"The following redirect plugins were detected on your site and can be imported from.":[null,""],"total = ":[null,""],"Import from %s":[null,""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,""],"Redirection not installed properly":[null,""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,""],"Default WordPress \"old slugs\"":[null,""],"Create associated redirect (added to end of URL)":[null,""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,""],"⚡️ Magic fix ⚡️":[null,""],"Plugin Status":[null,""],"Custom":[null,""],"Mobile":[null,""],"Feed Readers":[null,""],"Libraries":[null,""],"URL Monitor Changes":[null,""],"Save changes to this group":[null,""],"For example \"/amp\"":[null,""],"URL Monitor":[null,""],"Monitor changes to pages":[null,""],"Monitor trashed items (will create disabled redirects)":[null,""],"Delete 404s":[null,""],"Delete all logs for this 404":[null,""],"Delete all from IP %s":[null,""],"Delete all matching \"%s\"":[null,""],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,""],"Also check if your browser is able to load <code>redirection.js</code>:":[null,""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,""],"Unable to load Redirection":[null,""],"Unable to create group":[null,""],"Failed to fix database tables":[null,""],"Post monitor group is valid":[null,""],"Post monitor group is invalid":[null,""],"Post monitor group":[null,""],"All redirects have a valid group":[null,""],"Redirects with invalid groups detected":[null,""],"Valid redirect group":[null,""],"Valid groups detected":[null,""],"No valid groups, so you will not be able to create any redirects":[null,""],"Valid groups":[null,""],"Database tables":[null,""],"The following tables are missing:":[null,""],"All tables present":[null,""],"Cached Redirection detected":[null,""],"Please clear your browser cache and reload this page.":[null,""],"The data on this page has expired, please reload.":[null,""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,""],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,""],"If you think Redirection is at fault then create an issue.":[null,""],"This may be caused by another plugin - look at your browser's error console for more details.":[null,""],"Loading, please wait...":[null,""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,""],"Create Issue":[null,""],"Email":[null,""],"Important details":[null,""],"Need help?":[null,"Hai bisogno di aiuto?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,""],"Pos":[null,""],"410 - Gone":[null,""],"Position":[null,"Posizione"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,""],"Apache Module":[null,"Modulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,"Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."],"Import to group":[null,"Importa nel gruppo"],"Import a CSV, .htaccess, or JSON file.":[null,"Importa un file CSV, .htaccess o JSON."],"Click 'Add File' or drag and drop here.":[null,"Premi 'Aggiungi File' o trascina e rilascia qui."],"Add File":[null,"Aggiungi File"],"File selected":[null,"File selezionato"],"Importing":[null,"Importazione"],"Finished importing":[null,"Importazione finita"],"Total redirects imported:":[null,""],"Double-check the file is the correct format!":[null,"Controlla che il file sia nel formato corretto!"],"OK":[null,"OK"],"Close":[null,"Chiudi"],"All imports will be appended to the current database.":[null,"Tutte le importazioni verranno aggiunte al database corrente."],"Export":[null,"Esporta"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,"Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."],"Everything":[null,"Tutto"],"WordPress redirects":[null,"Redirezioni di WordPress"],"Apache redirects":[null,"Redirezioni Apache"],"Nginx redirects":[null,"Redirezioni nginx"],"CSV":[null,"CSV"],"Apache .htaccess":[null,".htaccess Apache"],"Nginx rewrite rules":[null,""],"Redirection JSON":[null,""],"View":[null,""],"Log files can be exported from the log pages.":[null,""],"Import/Export":[null,""],"Logs":[null,""],"404 errors":[null,"Errori 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,""],"I'd like to support some more.":[null,""],"Support 💰":[null,"Supporta 💰"],"Redirection saved":[null,"Redirezione salvata"],"Log deleted":[null,"Log eliminato"],"Settings saved":[null,"Impostazioni salvate"],"Group saved":[null,"Gruppo salvato"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","Sei sicuro di voler eliminare questo oggetto?","Sei sicuro di voler eliminare questi oggetti?"],"pass":[null,""],"All groups":[null,"Tutti i gruppi"],"301 - Moved Permanently":[null,"301 - Spostato in maniera permanente"],"302 - Found":[null,"302 - Trovato"],"307 - Temporary Redirect":[null,"307 - Redirezione temporanea"],"308 - Permanent Redirect":[null,"308 - Redirezione permanente"],"401 - Unauthorized":[null,"401 - Non autorizzato"],"404 - Not Found":[null,"404 - Non trovato"],"Title":[null,"Titolo"],"When matched":[null,"Quando corrisponde"],"with HTTP code":[null,"Con codice HTTP"],"Show advanced options":[null,"Mostra opzioni avanzate"],"Matched Target":[null,""],"Unmatched Target":[null,""],"Saving...":[null,"Salvataggio..."],"View notice":[null,"Vedi la notifica"],"Invalid source URL":[null,"URL di origine non valido"],"Invalid redirect action":[null,"Azione di redirezione non valida"],"Invalid redirect matcher":[null,""],"Unable to add new redirect":[null,"Impossibile aggiungere una nuova redirezione"],"Something went wrong 🙁":[null,"Qualcosa è andato storto 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"Ho cercato di fare una cosa e non ha funzionato. Potrebbe essere un problema temporaneo, se provi nuovamente potrebbe funzionare - grande!\nI was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!"],"It didn't work when I tried again":[null,"Non ha funzionato quando ho riprovato"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"Controlla se il tuo problema è descritto nella nostra fantastica lista {{link}}Redirection issues{{/link}}. Aggiungi ulteriori dettagli se trovi lo stesso problema."],"Log entries (%d max)":[null,""],"Search by IP":[null,"Cerca per IP"],"Select bulk action":[null,"Seleziona l'azione di massa"],"Bulk Actions":[null,"Azioni di massa"],"Apply":[null,"Applica"],"First page":[null,"Prima pagina"],"Prev page":[null,"Pagina precedente"],"Current Page":[null,"Pagina corrente"],"of %(page)s":[null,""],"Next page":[null,"Prossima pagina"],"Last page":[null,"Ultima pagina"],"%s item":["%s items","%s oggetto","%s oggetti"],"Select All":[null,"Seleziona tutto"],"Sorry, something went wrong loading the data - please try again":[null,"Qualcosa è andato storto leggendo i dati - riprova"],"No results":[null,"Nessun risultato"],"Delete the logs - are you sure?":[null,"Cancella i log - sei sicuro?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"Una volta eliminati i log correnti non saranno più disponibili. Puoi impostare una pianificazione di eliminazione dalle opzioni di Redirection se desideri eseguire automaticamente questa operazione."],"Yes! Delete the logs":[null,"Sì! Cancella i log"],"No! Don't delete the logs":[null,"No! Non cancellare i log"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,"Newsletter"],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Iscriviti alla newsletter di Redirection - una newsletter a basso traffico che riguarda le nuove caratteristiche e i cambiamenti al plugin. Ideale si vuoi provare le modifiche in beta prima del rilascio."],"Your email address:":[null,"Il tuo indirizzo email:"],"You've supported this plugin - thank you!":[null,"Hai già supportato questo plugin - grazie!"],"You get useful software and I get to carry on making it better.":[null,""],"Forever":[null,"Per sempre"],"Delete the plugin - are you sure?":[null,"Cancella il plugin - sei sicuro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,"Sì! Cancella il plugin"],"No! Don't delete the plugin":[null,"No! Non cancellare il plugin"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Gestisci tutti i redirect 301 and controlla tutti gli errori 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Support":[null,"Supporto"],"404s":[null,"404"],"Log":[null,"Log"],"Delete Redirection":[null,"Rimuovi Redirection"],"Upload":[null,"Carica"],"Import":[null,"Importa"],"Update":[null,"Aggiorna"],"Auto-generate URL":[null,"Genera URL automaticamente"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"],"RSS Token":[null,"Token RSS"],"Monitor changes to posts":[null,"Controlla cambiamenti ai post"],"404 Logs":[null,"Registro 404"],"(time to keep logs for)":[null,"(per quanto tempo conservare i log)"],"Redirect Logs":[null,"Registro redirezioni"],"I'm a nice person and I have helped support the author of this plugin":[null,"Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"],"Plugin Support":[null,""],"Options":[null,"Opzioni"],"Two months":[null,"Due mesi"],"A month":[null,"Un mese"],"A week":[null,"Una settimana"],"A day":[null,"Un giorno"],"No logs":[null,"Nessun log"],"Delete All":[null,"Elimina tutto"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Utilizza i gruppi per organizzare i tuoi redirect. I gruppi vengono assegnati a un modulo, il che influenza come funzionano i redirect in ciascun gruppo. Se non sei sicuro, scegli il modulo WordPress."],"Add Group":[null,"Aggiungi gruppo"],"Search":[null,"Cerca"],"Groups":[null,"Gruppi"],"Save":[null,"Salva"],"Group":[null,"Gruppo"],"Match":[null,"Match"],"Add new redirection":[null,"Aggiungi un nuovo reindirizzamento"],"Cancel":[null,"Annulla"],"Download":[null,"Scaricare"],"Redirection":[null,"Redirection"],"Settings":[null,"Impostazioni"],"Do nothing":[null,"Non fare niente"],"Error (404)":[null,"Errore (404)"],"Pass-through":[null,"Pass-through"],"Redirect to random post":[null,"Reindirizza a un post a caso"],"Redirect to URL":[null,"Reindirizza a URL"],"Invalid group when creating redirect":[null,"Gruppo non valido nella creazione del redirect"],"Show only this IP":[null,"Mostra solo questo IP"],"IP":[null,"IP"],"Source URL":[null,"URL di partenza"],"Date":[null,"Data"],"Add Redirect":[null,""],"All modules":[null,"Tutti i moduli"],"View Redirects":[null,"Mostra i redirect"],"Module":[null,"Modulo"],"Redirects":[null,"Reindirizzamenti"],"Name":[null,"Nome"],"Filter":[null,"Filtro"],"Reset hits":[null,""],"Enable":[null,"Attiva"],"Disable":[null,"Disattiva"],"Delete":[null,"Rimuovi"],"Edit":[null,"Modifica"],"Last Access":[null,"Ultimo accesso"],"Hits":[null,"Visite"],"URL":[null,"URL"],"Type":[null,"Tipo"],"Modified Posts":[null,"Post modificati"],"Redirections":[null,"Reindirizzamenti"],"User Agent":[null,"User agent"],"URL and user agent":[null,"URL e user agent"],"Target URL":[null,"URL di arrivo"],"URL only":[null,"solo URL"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL e referrer"],"Logged Out":[null,"Logged out"],"Logged In":[null,"Logged in"],"URL and login status":[null,"status URL e login"]}
1
+ {"":[],"https://redirection.me/":[""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":[""],"Plugin Importers":[""],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":[""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Monitor changes to pages":[""],"Monitor trashed items (will create disabled redirects)":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":[""],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[""],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":[""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":[""],"Important details":[""],"Need help?":["Hai bisogno di aiuto?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":[""],"410 - Gone":[""],"Position":["Posizione"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[""],"Apache Module":["Modulo Apache"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Inserisci il percorso completo e il nome del file se vuoi che Redirection aggiorni automaticamente il tuo {{code}}.htaccess{{/code}}."],"Import to group":["Importa nel gruppo"],"Import a CSV, .htaccess, or JSON file.":["Importa un file CSV, .htaccess o JSON."],"Click 'Add File' or drag and drop here.":["Premi 'Aggiungi File' o trascina e rilascia qui."],"Add File":["Aggiungi File"],"File selected":["File selezionato"],"Importing":["Importazione"],"Finished importing":["Importazione finita"],"Total redirects imported:":[""],"Double-check the file is the correct format!":["Controlla che il file sia nel formato corretto!"],"OK":["OK"],"Close":["Chiudi"],"All imports will be appended to the current database.":["Tutte le importazioni verranno aggiunte al database corrente."],"Export":["Esporta"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Esporta in CSV, Apache .htaccess, Nginx, o Redirection JSON (che contiene tutte le redirezioni e i gruppi)."],"Everything":["Tutto"],"WordPress redirects":["Redirezioni di WordPress"],"Apache redirects":["Redirezioni Apache"],"Nginx redirects":["Redirezioni nginx"],"CSV":["CSV"],"Apache .htaccess":[".htaccess Apache"],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":[""],"Log files can be exported from the log pages.":[""],"Import/Export":[""],"Logs":[""],"404 errors":["Errori 404"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["Supporta 💰"],"Redirection saved":["Redirezione salvata"],"Log deleted":["Log eliminato"],"Settings saved":["Impostazioni salvate"],"Group saved":["Gruppo salvato"],"Are you sure you want to delete this item?":["Sei sicuro di voler eliminare questo oggetto?","Sei sicuro di voler eliminare questi oggetti?"],"pass":[""],"All groups":["Tutti i gruppi"],"301 - Moved Permanently":["301 - Spostato in maniera permanente"],"302 - Found":["302 - Trovato"],"307 - Temporary Redirect":["307 - Redirezione temporanea"],"308 - Permanent Redirect":["308 - Redirezione permanente"],"401 - Unauthorized":["401 - Non autorizzato"],"404 - Not Found":["404 - Non trovato"],"Title":["Titolo"],"When matched":["Quando corrisponde"],"with HTTP code":["Con codice HTTP"],"Show advanced options":["Mostra opzioni avanzate"],"Matched Target":[""],"Unmatched Target":[""],"Saving...":["Salvataggio..."],"View notice":["Vedi la notifica"],"Invalid source URL":["URL di origine non valido"],"Invalid redirect action":["Azione di redirezione non valida"],"Invalid redirect matcher":[""],"Unable to add new redirect":["Impossibile aggiungere una nuova redirezione"],"Something went wrong 🙁":["Qualcosa è andato storto 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Ho cercato di fare una cosa e non ha funzionato. Potrebbe essere un problema temporaneo, se provi nuovamente potrebbe funzionare - grande!\nI was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!"],"It didn't work when I tried again":["Non ha funzionato quando ho riprovato"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Controlla se il tuo problema è descritto nella nostra fantastica lista {{link}}Redirection issues{{/link}}. Aggiungi ulteriori dettagli se trovi lo stesso problema."],"Log entries (%d max)":[""],"Search by IP":["Cerca per IP"],"Select bulk action":["Seleziona l'azione di massa"],"Bulk Actions":["Azioni di massa"],"Apply":["Applica"],"First page":["Prima pagina"],"Prev page":["Pagina precedente"],"Current Page":["Pagina corrente"],"of %(page)s":[""],"Next page":["Prossima pagina"],"Last page":["Ultima pagina"],"%s item":["%s oggetto","%s oggetti"],"Select All":["Seleziona tutto"],"Sorry, something went wrong loading the data - please try again":["Qualcosa è andato storto leggendo i dati - riprova"],"No results":["Nessun risultato"],"Delete the logs - are you sure?":["Cancella i log - sei sicuro?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["Una volta eliminati i log correnti non saranno più disponibili. Puoi impostare una pianificazione di eliminazione dalle opzioni di Redirection se desideri eseguire automaticamente questa operazione."],"Yes! Delete the logs":["Sì! Cancella i log"],"No! Don't delete the logs":["No! Non cancellare i log"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":["Newsletter"],"Want to keep up to date with changes to Redirection?":[""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Iscriviti alla newsletter di Redirection - una newsletter a basso traffico che riguarda le nuove caratteristiche e i cambiamenti al plugin. Ideale si vuoi provare le modifiche in beta prima del rilascio."],"Your email address:":["Il tuo indirizzo email:"],"You've supported this plugin - thank you!":["Hai già supportato questo plugin - grazie!"],"You get useful software and I get to carry on making it better.":[""],"Forever":["Per sempre"],"Delete the plugin - are you sure?":["Cancella il plugin - sei sicuro?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[""],"Yes! Delete the plugin":["Sì! Cancella il plugin"],"No! Don't delete the plugin":["No! Non cancellare il plugin"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Gestisci tutti i redirect 301 and controlla tutti gli errori 404"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[""],"Support":["Supporto"],"404s":["404"],"Log":["Log"],"Delete Redirection":["Rimuovi Redirection"],"Upload":["Carica"],"Import":["Importa"],"Update":["Aggiorna"],"Auto-generate URL":["Genera URL automaticamente"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["Un token univoco consente ai lettori di feed di accedere all'RSS del registro di Redirection (lasciandolo vuoto verrà generato automaticamente)"],"RSS Token":["Token RSS"],"Monitor changes to posts":["Controlla cambiamenti ai post"],"404 Logs":["Registro 404"],"(time to keep logs for)":["(per quanto tempo conservare i log)"],"Redirect Logs":["Registro redirezioni"],"I'm a nice person and I have helped support the author of this plugin":["Sono una brava persona e ho contribuito a sostenere l'autore di questo plugin"],"Plugin Support":[""],"Options":["Opzioni"],"Two months":["Due mesi"],"A month":["Un mese"],"A week":["Una settimana"],"A day":["Un giorno"],"No logs":["Nessun log"],"Delete All":["Elimina tutto"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Utilizza i gruppi per organizzare i tuoi redirect. I gruppi vengono assegnati a un modulo, il che influenza come funzionano i redirect in ciascun gruppo. Se non sei sicuro, scegli il modulo WordPress."],"Add Group":["Aggiungi gruppo"],"Search":["Cerca"],"Groups":["Gruppi"],"Save":["Salva"],"Group":["Gruppo"],"Match":["Match"],"Add new redirection":["Aggiungi un nuovo reindirizzamento"],"Cancel":["Annulla"],"Download":["Scaricare"],"Redirection":["Redirection"],"Settings":["Impostazioni"],"Do nothing":["Non fare niente"],"Error (404)":["Errore (404)"],"Pass-through":["Pass-through"],"Redirect to random post":["Reindirizza a un post a caso"],"Redirect to URL":["Reindirizza a URL"],"Invalid group when creating redirect":["Gruppo non valido nella creazione del redirect"],"Show only this IP":["Mostra solo questo IP"],"IP":["IP"],"Source URL":["URL di partenza"],"Date":["Data"],"Add Redirect":[""],"All modules":["Tutti i moduli"],"View Redirects":["Mostra i redirect"],"Module":["Modulo"],"Redirects":["Reindirizzamenti"],"Name":["Nome"],"Filter":["Filtro"],"Reset hits":[""],"Enable":["Attiva"],"Disable":["Disattiva"],"Delete":["Rimuovi"],"Edit":["Modifica"],"Last Access":["Ultimo accesso"],"Hits":["Visite"],"URL":["URL"],"Type":["Tipo"],"Modified Posts":["Post modificati"],"Redirections":["Reindirizzamenti"],"User Agent":["User agent"],"URL and user agent":["URL e user agent"],"Target URL":["URL di arrivo"],"URL only":["solo URL"],"Regex":["Regex"],"Referrer":["Referrer"],"URL and referrer":["URL e referrer"],"Logged Out":["Logged out"],"Logged In":["Logged in"],"URL and login status":["status URL e login"]}
locale/json/redirection-ja.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-11-19 07:48:04+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=1; plural=0;","x-generator":"GlotPress/2.4.0-alpha","language":"ja_JP","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,""],"Never cache":[null,""],"An hour":[null,"1時間"],"Redirect Cache":[null,"リダイレクトキャッシュ"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,""],"Are you sure you want to import from %s?":[null,""],"Plugin Importers":[null,""],"The following redirect plugins were detected on your site and can be imported from.":[null,""],"total = ":[null,""],"Import from %s":[null,""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,""],"Redirection not installed properly":[null,""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,""],"Default WordPress \"old slugs\"":[null,""],"Create associated redirect (added to end of URL)":[null,""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,"マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"],"⚡️ Magic fix ⚡️":[null,"⚡️マジック修正⚡️"],"Plugin Status":[null,"プラグインステータス"],"Custom":[null,"カスタム"],"Mobile":[null,"モバイル"],"Feed Readers":[null,"フィード読者"],"Libraries":[null,"ライブラリ"],"URL Monitor Changes":[null,""],"Save changes to this group":[null,"このグループへの変更を保存"],"For example \"/amp\"":[null,"例: \"/amp\""],"URL Monitor":[null,"URL モニター"],"Monitor changes to pages":[null,""],"Monitor trashed items (will create disabled redirects)":[null,"ゴミ箱内のアイテムモニター (無効なリダイレクトを作成します)"],"Delete 404s":[null,"404を削除"],"Delete all logs for this 404":[null,"この404エラーに対するすべてのログを削除"],"Delete all from IP %s":[null,"すべての IP %s からのものを削除"],"Delete all matching \"%s\"":[null,"すべての \"%s\" に一致するものを削除"],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,""],"Also check if your browser is able to load <code>redirection.js</code>:":[null,""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,""],"Unable to load Redirection":[null,""],"Unable to create group":[null,"グループの作成に失敗しました"],"Failed to fix database tables":[null,"データベーステーブルの修正に失敗しました"],"Post monitor group is valid":[null,"投稿モニターグループは有効です"],"Post monitor group is invalid":[null,"投稿モニターグループが無効です"],"Post monitor group":[null,"投稿モニターグループ"],"All redirects have a valid group":[null,"すべてのリダイレクトは有効なグループになっています"],"Redirects with invalid groups detected":[null,"無効なグループのリダイレクトが検出されました"],"Valid redirect group":[null,"有効なリダイレクトグループ"],"Valid groups detected":[null,"有効なグループが検出されました"],"No valid groups, so you will not be able to create any redirects":[null,"有効なグループがない場合、新規のリダイレクトを追加することはできません。"],"Valid groups":[null,"有効なグループ"],"Database tables":[null,"データベーステーブル"],"The following tables are missing:":[null,"次のテーブルが不足しています:"],"All tables present":[null,""],"Cached Redirection detected":[null,"キャッシュされた Redirection が検知されました"],"Please clear your browser cache and reload this page.":[null,"ブラウザーのキャッシュをクリアしてページを再読込してください。"],"The data on this page has expired, please reload.":[null,"このページのデータが期限切れになりました。再読込してください。"],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,"WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,"サーバーが403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,""],"If you think Redirection is at fault then create an issue.":[null,"もしこの原因が Redirection だと思うのであれば Issue を作成してください。"],"This may be caused by another plugin - look at your browser's error console for more details.":[null,"この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"],"Loading, please wait...":[null,"ロード中です。お待ち下さい…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,"{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,"Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,"もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n issue{{/link}} を詳細とともに作成してください。"],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,"もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"],"Create Issue":[null,"Issue を作成"],"Email":[null,"メール"],"Important details":[null,"重要な詳細"],"Need help?":[null,"ヘルプが必要ですか?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,"サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"],"Pos":[null,"Pos"],"410 - Gone":[null,"410 - 消滅"],"Position":[null,"配置"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,"URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"],"Apache Module":[null,"Apache モジュール"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,"{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"],"Import to group":[null,"グループにインポート"],"Import a CSV, .htaccess, or JSON file.":[null,"CSV や .htaccess、JSON ファイルをインポート"],"Click 'Add File' or drag and drop here.":[null,"「新規追加」をクリックしここにドラッグアンドドロップしてください。"],"Add File":[null,"ファイルを追加"],"File selected":[null,"選択されたファイル"],"Importing":[null,"インポート中"],"Finished importing":[null,"インポートが完了しました"],"Total redirects imported:":[null,"インポートされたリダイレクト数: "],"Double-check the file is the correct format!":[null,"ファイルが正しい形式かもう一度チェックしてください。"],"OK":[null,"OK"],"Close":[null,"閉じる"],"All imports will be appended to the current database.":[null,"すべてのインポートは現在のデータベースに追加されます。"],"Export":[null,"エクスポート"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,"CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"],"Everything":[null,"すべて"],"WordPress redirects":[null,"WordPress リダイレクト"],"Apache redirects":[null,"Apache リダイレクト"],"Nginx redirects":[null,"Nginx リダイレクト"],"CSV":[null,"CSV"],"Apache .htaccess":[null,"Apache .htaccess"],"Nginx rewrite rules":[null,"Nginx のリライトルール"],"Redirection JSON":[null,"Redirection JSON"],"View":[null,"表示"],"Log files can be exported from the log pages.":[null,"ログファイルはログページにてエクスポート出来ます。"],"Import/Export":[null,"インポート / エクスポート"],"Logs":[null,"ログ"],"404 errors":[null,"404 エラー"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,"{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"],"I'd like to support some more.":[null,"もっとサポートがしたいです。"],"Support 💰":[null,"サポート💰"],"Redirection saved":[null,"リダイレクトが保存されました"],"Log deleted":[null,"ログが削除されました"],"Settings saved":[null,"設定が保存されました"],"Group saved":[null,"グループが保存されました"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?",["本当に削除してもよろしいですか?"]],"pass":[null,"パス"],"All groups":[null,"すべてのグループ"],"301 - Moved Permanently":[null,"301 - 恒久的に移動"],"302 - Found":[null,"302 - 発見"],"307 - Temporary Redirect":[null,"307 - 一時リダイレクト"],"308 - Permanent Redirect":[null,"308 - 恒久リダイレクト"],"401 - Unauthorized":[null,"401 - 認証が必要"],"404 - Not Found":[null,"404 - 未検出"],"Title":[null,"タイトル"],"When matched":[null,"マッチした時"],"with HTTP code":[null,"次の HTTP コードと共に"],"Show advanced options":[null,"高度な設定を表示"],"Matched Target":[null,"見つかったターゲット"],"Unmatched Target":[null,"ターゲットが見つかりません"],"Saving...":[null,"保存中…"],"View notice":[null,"通知を見る"],"Invalid source URL":[null,"不正な元 URL"],"Invalid redirect action":[null,"不正なリダイレクトアクション"],"Invalid redirect matcher":[null,"不正なリダイレクトマッチャー"],"Unable to add new redirect":[null,"新しいリダイレクトの追加に失敗しました"],"Something went wrong 🙁":[null,"問題が発生しました"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"It didn't work when I tried again":[null,"もう一度試しましたが動きませんでした"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"もしその問題と同じ問題が {{link}}Redirection issues{{/link}} 内で説明されているものの、まだ未解決であったなら、追加の詳細情報を提供してください。"],"Log entries (%d max)":[null,"ログ (最大 %d)"],"Search by IP":[null,"IP による検索"],"Select bulk action":[null,"一括操作を選択"],"Bulk Actions":[null,"一括操作"],"Apply":[null,"適応"],"First page":[null,"最初のページ"],"Prev page":[null,"前のページ"],"Current Page":[null,"現在のページ"],"of %(page)s":[null,"%(page)s"],"Next page":[null,"次のページ"],"Last page":[null,"最後のページ"],"%s item":["%s items",["%s 個のアイテム"]],"Select All":[null,"すべて選択"],"Sorry, something went wrong loading the data - please try again":[null,"データのロード中に問題が発生しました - もう一度お試しください"],"No results":[null,"結果なし"],"Delete the logs - are you sure?":[null,"本当にログを消去しますか ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"],"Yes! Delete the logs":[null,"ログを消去する"],"No! Don't delete the logs":[null,"ログを消去しない"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"],"Newsletter":[null,"ニュースレター"],"Want to keep up to date with changes to Redirection?":[null,"リダイレクトの変更を最新の状態に保ちたいですか ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"],"Your email address:":[null,"メールアドレス: "],"You've supported this plugin - thank you!":[null,"あなたは既にこのプラグインをサポート済みです - ありがとうございます !"],"You get useful software and I get to carry on making it better.":[null,"あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"],"Forever":[null,"永久に"],"Delete the plugin - are you sure?":[null,"本当にプラグインを削除しますか ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"],"Yes! Delete the plugin":[null,"プラグインを消去する"],"No! Don't delete the plugin":[null,"プラグインを消去しない"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"すべての 301 リダイレクトを管理し、404 エラーをモニター"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"],"Support":[null,"作者を応援 "],"404s":[null,"404 エラー"],"Log":[null,"ログ"],"Delete Redirection":[null,"転送ルールを削除"],"Upload":[null,"アップロード"],"Import":[null,"インポート"],"Update":[null,"更新"],"Auto-generate URL":[null,"URL を自動生成 "],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"],"RSS Token":[null,"RSS トークン"],"Monitor changes to posts":[null,"投稿の変更をモニター"],"404 Logs":[null,"404 ログ"],"(time to keep logs for)":[null,"(ログの保存期間)"],"Redirect Logs":[null,"転送ログ"],"I'm a nice person and I have helped support the author of this plugin":[null,"このプラグインの作者に対する援助を行いました"],"Plugin Support":[null,"プラグインサポート"],"Options":[null,"設定"],"Two months":[null,"2ヶ月"],"A month":[null,"1ヶ月"],"A week":[null,"1週間"],"A day":[null,"1日"],"No logs":[null,"ログなし"],"Delete All":[null,"すべてを削除"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"],"Add Group":[null,"グループを追加"],"Search":[null,"検索"],"Groups":[null,"グループ"],"Save":[null,"保存"],"Group":[null,"グループ"],"Match":[null,"一致条件"],"Add new redirection":[null,"新しい転送ルールを追加"],"Cancel":[null,"キャンセル"],"Download":[null,"ダウンロード"],"Redirection":[null,"Redirection"],"Settings":[null,"設定"],"Do nothing":[null,"何もしない"],"Error (404)":[null,"エラー (404)"],"Pass-through":[null,"通過"],"Redirect to random post":[null,"ランダムな記事へ転送"],"Redirect to URL":[null,"URL へ転送"],"Invalid group when creating redirect":[null,"転送ルールを作成する際に無効なグループが指定されました"],"Show only this IP":[null,"この IP のみ表示"],"IP":[null,"IP"],"Source URL":[null,"ソース URL"],"Date":[null,"日付"],"Add Redirect":[null,"転送ルールを追加"],"All modules":[null,"すべてのモジュール"],"View Redirects":[null,"転送ルールを表示"],"Module":[null,"モジュール"],"Redirects":[null,"転送ルール"],"Name":[null,"名称"],"Filter":[null,"フィルター"],"Reset hits":[null,"訪問数をリセット"],"Enable":[null,"有効化"],"Disable":[null,"無効化"],"Delete":[null,"削除"],"Edit":[null,"編集"],"Last Access":[null,"前回のアクセス"],"Hits":[null,"ヒット数"],"URL":[null,"URL"],"Type":[null,"タイプ"],"Modified Posts":[null,"編集済みの投稿"],"Redirections":[null,"転送ルール"],"User Agent":[null,"ユーザーエージェント"],"URL and user agent":[null,"URL およびユーザーエージェント"],"Target URL":[null,"ターゲット URL"],"URL only":[null,"URL のみ"],"Regex":[null,"正規表現"],"Referrer":[null,"リファラー"],"URL and referrer":[null,"URL およびリファラー"],"Logged Out":[null,"ログアウト中"],"Logged In":[null,"ログイン中"],"URL and login status":[null,"URL およびログイン状態"]}
1
+ {"":[],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":["キャッシュしない"],"An hour":["1時間"],"Redirect Cache":["リダイレクトキャッシュ"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":["本当に %s からインポートしますか ?"],"Plugin Importers":["インポートプラグイン"],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":["全数 ="],"Import from %s":["%s からインポート"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":[""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["マジック修正ボタンが効かない場合、エラーを読み自分で修正する必要があります。もしくは下の「助けが必要」セクションをお読みください。"],"⚡️ Magic fix ⚡️":["⚡️マジック修正⚡️"],"Plugin Status":["プラグインステータス"],"Custom":["カスタム"],"Mobile":["モバイル"],"Feed Readers":["フィード読者"],"Libraries":["ライブラリ"],"URL Monitor Changes":[""],"Save changes to this group":["このグループへの変更を保存"],"For example \"/amp\"":["例: \"/amp\""],"URL Monitor":["URL モニター"],"Monitor changes to pages":[""],"Monitor trashed items (will create disabled redirects)":["ゴミ箱内のアイテムモニター (無効なリダイレクトを作成します)"],"Delete 404s":["404を削除"],"Delete all logs for this 404":["この404エラーに対するすべてのログを削除"],"Delete all from IP %s":["すべての IP %s からのものを削除"],"Delete all matching \"%s\"":["すべての \"%s\" に一致するものを削除"],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":["グループの作成に失敗しました"],"Failed to fix database tables":["データベーステーブルの修正に失敗しました"],"Post monitor group is valid":["投稿モニターグループは有効です"],"Post monitor group is invalid":["投稿モニターグループが無効です"],"Post monitor group":["投稿モニターグループ"],"All redirects have a valid group":["すべてのリダイレクトは有効なグループになっています"],"Redirects with invalid groups detected":["無効なグループのリダイレクトが検出されました"],"Valid redirect group":["有効なリダイレクトグループ"],"Valid groups detected":["有効なグループが検出されました"],"No valid groups, so you will not be able to create any redirects":["有効なグループがない場合、新規のリダイレクトを追加することはできません。"],"Valid groups":["有効なグループ"],"Database tables":["データベーステーブル"],"The following tables are missing:":["次のテーブルが不足しています:"],"All tables present":[""],"Cached Redirection detected":["キャッシュされた Redirection が検知されました"],"Please clear your browser cache and reload this page.":["ブラウザーのキャッシュをクリアしてページを再読込してください。"],"The data on this page has expired, please reload.":["このページのデータが期限切れになりました。再読込してください。"],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress WordPress が応答しません。これはエラーが発生したかリクエストがブロックされたことを示しています。サーバーの error_log を確認してください。"],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":["サーバーが403 (閲覧禁止) エラーを返しました。これはリクエストがブロックされてしまった可能性があることを示しています。ファイアウォールやセキュリティプラグインを使用していますか?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":["もしこの原因が Redirection だと思うのであれば Issue を作成してください。"],"This may be caused by another plugin - look at your browser's error console for more details.":["この原因は他のプラグインが原因で起こっている可能性があります - 詳細を見るにはブラウザーの開発者ツールを使用してください。"],"Loading, please wait...":["ロード中です。お待ち下さい…"],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV ファイルフォーマット{{/strong}}: {{code}}ソース URL、 ターゲット URL{{/code}} - またこれらも使用可能です: {{code}}正規表現,、http コード{{/code}} ({{code}}正規表現{{/code}} - 0 = no, 1 = yes)"],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection が動きません。ブラウザーのキャッシュを削除しページを再読込してみてください。"],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["もしこれが助けにならない場合、ブラウザーのコンソールを開き {{link}新しい\n issue{{/link}} を詳細とともに作成してください。"],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["もし未知の問題を発見したなら、{{strong}}issue を作成{{/strong}} するか {{strong}}メール{{/strong}} を送信してください。その際には何をしようとして発生したのかという説明や下に表示されている「重要な詳細」を含めてください。また、スクリーンショットもお願いします。"],"Create Issue":["Issue を作成"],"Email":["メール"],"Important details":["重要な詳細"],"Need help?":["ヘルプが必要ですか?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["サポートはあくまで時間があるときにのみ提供されることになり、必ず提供されると保証することは出来ないことに注意してください。また有料サポートは受け付けていません。"],"Pos":["Pos"],"410 - Gone":["410 - 消滅"],"Position":["配置"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":["URL が指定されていない場合に URL を自動生成するために使用されます。{{code}}$dec${{/code}} もしくは {{code}}$hex${{/code}} のような特別なタグが一意の ID を作るために挿入されます。"],"Apache Module":["Apache モジュール"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["{{code}}.htaccess{{/code} を自動的にアップデートさせたい場合、完全なパスとファイルネームを入力してください。"],"Import to group":["グループにインポート"],"Import a CSV, .htaccess, or JSON file.":["CSV や .htaccess、JSON ファイルをインポート"],"Click 'Add File' or drag and drop here.":["「新規追加」をクリックしここにドラッグアンドドロップしてください。"],"Add File":["ファイルを追加"],"File selected":["選択されたファイル"],"Importing":["インポート中"],"Finished importing":["インポートが完了しました"],"Total redirects imported:":["インポートされたリダイレクト数: "],"Double-check the file is the correct format!":["ファイルが正しい形式かもう一度チェックしてください。"],"OK":["OK"],"Close":["閉じる"],"All imports will be appended to the current database.":["すべてのインポートは現在のデータベースに追加されます。"],"Export":["エクスポート"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["CSV, Apache .htaccess, Nginx, or Redirection JSON へエクスポート (すべての形式はすべてのリダイレクトとグループを含んでいます)"],"Everything":["すべて"],"WordPress redirects":["WordPress リダイレクト"],"Apache redirects":["Apache リダイレクト"],"Nginx redirects":["Nginx リダイレクト"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx のリライトルール"],"Redirection JSON":["Redirection JSON"],"View":["表示"],"Log files can be exported from the log pages.":["ログファイルはログページにてエクスポート出来ます。"],"Import/Export":["インポート / エクスポート"],"Logs":["ログ"],"404 errors":["404 エラー"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["{{code}}%s{{/code}} をメンションし、何をしたかの説明をお願いします"],"I'd like to support some more.":["もっとサポートがしたいです。"],"Support 💰":["サポート💰"],"Redirection saved":["リダイレクトが保存されました"],"Log deleted":["ログが削除されました"],"Settings saved":["設定が保存されました"],"Group saved":["グループが保存されました"],"Are you sure you want to delete this item?":[["本当に削除してもよろしいですか?"]],"pass":["パス"],"All groups":["すべてのグループ"],"301 - Moved Permanently":["301 - 恒久的に移動"],"302 - Found":["302 - 発見"],"307 - Temporary Redirect":["307 - 一時リダイレクト"],"308 - Permanent Redirect":["308 - 恒久リダイレクト"],"401 - Unauthorized":["401 - 認証が必要"],"404 - Not Found":["404 - 未検出"],"Title":["タイトル"],"When matched":["マッチした時"],"with HTTP code":["次の HTTP コードと共に"],"Show advanced options":["高度な設定を表示"],"Matched Target":["見つかったターゲット"],"Unmatched Target":["ターゲットが見つかりません"],"Saving...":["保存中…"],"View notice":["通知を見る"],"Invalid source URL":["不正な元 URL"],"Invalid redirect action":["不正なリダイレクトアクション"],"Invalid redirect matcher":["不正なリダイレクトマッチャー"],"Unable to add new redirect":["新しいリダイレクトの追加に失敗しました"],"Something went wrong 🙁":["問題が発生しました"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["何かをしようとして問題が発生しました。 それは一時的な問題である可能性があるので、再試行を試してみてください。"],"It didn't work when I tried again":["もう一度試しましたが動きませんでした"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["もしその問題と同じ問題が {{link}}Redirection issues{{/link}} 内で説明されているものの、まだ未解決であったなら、追加の詳細情報を提供してください。"],"Log entries (%d max)":["ログ (最大 %d)"],"Search by IP":["IP による検索"],"Select bulk action":["一括操作を選択"],"Bulk Actions":["一括操作"],"Apply":["適応"],"First page":["最初のページ"],"Prev page":["前のページ"],"Current Page":["現在のページ"],"of %(page)s":["%(page)s"],"Next page":["次のページ"],"Last page":["最後のページ"],"%s item":[["%s 個のアイテム"]],"Select All":["すべて選択"],"Sorry, something went wrong loading the data - please try again":["データのロード中に問題が発生しました - もう一度お試しください"],"No results":["結果なし"],"Delete the logs - are you sure?":["本当にログを消去しますか ?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["ログを消去すると復元することは出来ません。もしこの操作を自動的に実行させたい場合、Redirection の設定から削除スケジュールを設定することが出来ます。"],"Yes! Delete the logs":["ログを消去する"],"No! Don't delete the logs":["ログを消去しない"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["登録ありがとうございます ! 登録へ戻る場合は {{a}}こちら{{/a}} をクリックしてください。"],"Newsletter":["ニュースレター"],"Want to keep up to date with changes to Redirection?":["リダイレクトの変更を最新の状態に保ちたいですか ?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Redirection ニュースレターにサインアップ - このプラグインの新機能や変更点などについての小規模のニュースレターです。リリース前のベータ版をテストするのに理想的です。"],"Your email address:":["メールアドレス: "],"You've supported this plugin - thank you!":["あなたは既にこのプラグインをサポート済みです - ありがとうございます !"],"You get useful software and I get to carry on making it better.":["あなたはいくつかの便利なソフトウェアを手に入れ、私はそれをより良くするために続けます。"],"Forever":["永久に"],"Delete the plugin - are you sure?":["本当にプラグインを削除しますか ?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["プラグインを消去するとすべてのリダイレクト、ログ、設定が削除されます。プラグインを消したい場合、もしくはプラグインをリセットしたい時にこれを実行してください。"],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["リダイレクトを削除するとリダイレクト機能は機能しなくなります。削除後でもまだ機能しているように見えるのならば、ブラウザーのキャッシュを削除してみてください。"],"Yes! Delete the plugin":["プラグインを消去する"],"No! Don't delete the plugin":["プラグインを消去しない"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["すべての 301 リダイレクトを管理し、404 エラーをモニター"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection プラグインは無料でお使いいただけます。しかし、開発にはかなりの時間と労力がかかっており、{{strong}}少額の寄付{{/strong}} でも開発を助けていただけると嬉しいです。"],"Support":["作者を応援 "],"404s":["404 エラー"],"Log":["ログ"],"Delete Redirection":["転送ルールを削除"],"Upload":["アップロード"],"Import":["インポート"],"Update":["更新"],"Auto-generate URL":["URL を自動生成 "],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["リディレクションログ RSS にフィードリーダーからアクセスするための固有トークン (空白にしておけば自動生成します)"],"RSS Token":["RSS トークン"],"Monitor changes to posts":["投稿の変更をモニター"],"404 Logs":["404 ログ"],"(time to keep logs for)":["(ログの保存期間)"],"Redirect Logs":["転送ログ"],"I'm a nice person and I have helped support the author of this plugin":["このプラグインの作者に対する援助を行いました"],"Plugin Support":["プラグインサポート"],"Options":["設定"],"Two months":["2ヶ月"],"A month":["1ヶ月"],"A week":["1週間"],"A day":["1日"],"No logs":["ログなし"],"Delete All":["すべてを削除"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["グループを使って転送をグループ化しましょう。グループはモジュールに割り当てられ、グループ内の転送に影響します。はっきりわからない場合は WordPress モジュールのみを使ってください。"],"Add Group":["グループを追加"],"Search":["検索"],"Groups":["グループ"],"Save":["保存"],"Group":["グループ"],"Match":["一致条件"],"Add new redirection":["新しい転送ルールを追加"],"Cancel":["キャンセル"],"Download":["ダウンロード"],"Redirection":["Redirection"],"Settings":["設定"],"Do nothing":["何もしない"],"Error (404)":["エラー (404)"],"Pass-through":["通過"],"Redirect to random post":["ランダムな記事へ転送"],"Redirect to URL":["URL へ転送"],"Invalid group when creating redirect":["転送ルールを作成する際に無効なグループが指定されました"],"Show only this IP":["この IP のみ表示"],"IP":["IP"],"Source URL":["ソース URL"],"Date":["日付"],"Add Redirect":["転送ルールを追加"],"All modules":["すべてのモジュール"],"View Redirects":["転送ルールを表示"],"Module":["モジュール"],"Redirects":["転送ルール"],"Name":["名称"],"Filter":["フィルター"],"Reset hits":["訪問数をリセット"],"Enable":["有効化"],"Disable":["無効化"],"Delete":["削除"],"Edit":["編集"],"Last Access":["前回のアクセス"],"Hits":["ヒット数"],"URL":["URL"],"Type":["タイプ"],"Modified Posts":["編集済みの投稿"],"Redirections":["転送ルール"],"User Agent":["ユーザーエージェント"],"URL and user agent":["URL およびユーザーエージェント"],"Target URL":["ターゲット URL"],"URL only":["URL のみ"],"Regex":["正規表現"],"Referrer":["リファラー"],"URL and referrer":["URL およびリファラー"],"Logged Out":["ログアウト中"],"Logged In":["ログイン中"],"URL and login status":["URL およびログイン状態"]}
locale/json/redirection-lt_LT.json DELETED
@@ -1 +0,0 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection 2.2.5","report-msgid-bugs-to":"http://wordpress.org/tag/redirection","pot-creation-date":"2011-07-17 10:14:58+00:00","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","po-revision-date":"2011-08-31 00:43+0200","last-translator":"Тарас Данилюк <nikman851@gmail.com>","language-team":"Nata Strazda <nata.strazda@gmail.com>","x-poedit-language":"Lithuanian","x-poedit-country":"LITHUANIA"},"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s imported on %s at %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"XML importuoti tik su PHP5 turite PHP4."],"Groups for module":[null,"Už modulio grupės"],"Module":[null,"modulio "],"Search":[null,"paieška"],"go":[null,"eiti"],"Hits":[null,"Hitai"],"Name":[null,"pavadinimas"],"Select All":[null,"Žymėti viską"],"Toggle":[null,"perjungti"],"Reset Hits":[null,"Atstatyti Hitai"],"Delete":[null,"panaikinti"],"Move To":[null,"perkelti į"],"Go":[null,"eiti"],"re-order":[null,"užsakymą"],"save order":[null,"išsaugoti, kad"],"You have no groups in this module.":[null,"Jūs neturite šiame modulyje grupių"],"Add Group":[null,"Pridėti grupę"],"Add":[null,"Pridėti grupę"],"No items have been selected":[null,"Nėra elementų, buvo atrinkti"],"Are you sure?":[null,"Ar tikrai?"],"Redirects":[null,"nukreipimus"],"Groups":[null,"grupės"],"Modules":[null,"moduliai"],"Log":[null,"Prisijungti"],"Options":[null,"parinktys"],"Support":[null,"parama"],"View as":[null,"Žiūrėti kaip"],"CSV":[null,"CSV"],"XML":[null,"XML"],"Apache":[null,"Apache"],"RSS":[null,"RSS"],"edit":[null,"redaguoti"],"delete":[null,"panaikinti"],"reset":[null,"iš naujo"],"Redirection Log":[null,"Nukreipiama Prisijungti"],"Bulk Actions":[null,"Tūrinės veiksmai"],"Apply":[null,"taikyti"],"Group":[null,"grupė"],"Filter":[null,"filtras"],"Date":[null,"data"],"Source URL":[null,"šaltinio URL"],"Referrer":[null,"nuorodą"],"IP":[null,""],"There are no logs to display!":[null,"Nėra rąstų, kuriuos būtų galima parodyti!"],"Process Current Logs":[null,"Tvarkyti Aktualus Įrašai"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Šie veiksmai turės įtakos visų šiuo metu turimų rąstų (ty savo paieškos frazę apriboti žurnalo elementus)."],"Delete Logs":[null,"ištrinti Įrašai"],"Redirections for group":[null,"Peradresavimai, grupės"],"Last Access":[null,"Paskutinis apsilankymas"],"Type":[null,"tipas"],"URL":[null,""],"Position":[null,"pozicija"],"You have no redirections.":[null,"Jūs neturite nukreipimai."],"Redirect to":[null,"nukreipti į"],"Redirected by":[null,"Nukreipta pagal"],"for":[null,"už"],"User Agent":[null,""],"disabled":[null,"neįgaliesiems"],"%s by matching %s":[null,""],"Title":[null,"pavadinimas"],"optional":[null,"neprivalomas"],"Regex":[null,""],"Save":[null,"sutaupyti"],"Cancel":[null,"atšaukti"],"Add new redirection":[null,"Pridėti naują peradresavimo"],"Your redirection has been added.":[null,"Jūsų peradresavimo buvo įtrauktas."],"Match":[null,"rungtynės"],"Action":[null,"veiksmas"],"Regular expression":[null,"reguliaraus išraiška"],"Target URL":[null,"Paskirties URL"],"Add Redirection":[null,"Pridėti Nukreipiama"],"edit group":[null,"redaguoti grupę"],"Details":[null,"Išsamiau"],"Items":[null,"daiktai"],"Operations":[null,"operacijų"],"Note: Hits are dependant on log entries":[null,"Pastaba: Hitai priklauso nuo žurnalo įrašus"],"You have no modules defined yet":[null,"Jūs turite ne dar apibrėžti moduliai"],"Add Module":[null,""],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Modulis yra kontrolės elementas, kuris nustato, kaip tvarkomi nukreipimai. Tvarko WordPress WordPress modulio elementų, Apache modulis elementai tvarkomi pagal <code>. htaccess</ ode> ir 404 modulis elementai veikia kaip klaidas 404 prisijungęs."],"Create":[null,"kurti"],"Redirection Support":[null,""],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Nukreipiama laisvai naudotis - gyvenimas yra nuostabus ir mielas! Tačiau, ji reikalauja daug laiko ir pastangų plėtoti ir, jei ji buvo naudinga, galite padėti remti šią plėtrą <strong>mažą donorystės</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,""],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Jei jūs naudojate šią plugin komercinės sąrankos, arba jaučia, kad tai buvo ypač naudinga, tada galbūt norėsite apsvarstyti <strong>komercinę donorystę</strong>."],"Individual<br/>Donation":[null,"Individualus <br/> Donorystė"],"Commercial<br/>Donation":[null,"Komercinis <br/> Donorystė"],"Translations":[null,"vertimai"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Jei esate daugiakalbiai, tada jūs galbūt norėsite apsvarstyti dovanojančios vertimą:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Visi vertėjai turės pateikti nuorodą į savo svetainę pagrindiniame puslapyje įjungti <a href=\"http://urbangiraffe.com/plugins/redirection/\"> UrbanGiraffe</a>, be to yra individualus rėmėjas."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,""],"Auto-generate URL":[null,""],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"],"IP Lookup Service":[null,""],"Plugin Support":[null,""],"I'm a nice person and I have helped support the author of this plugin":[null,"Aš esu gražus ir aš padėjo remti šį papildinį autorius"],"Logging":[null,""],"log redirected requests":[null,""],"log 404 Not Found requests":[null,""],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Atsisakykite vieno ar abiejų šių išjungti medienos ruoša ir sumažinti duomenų bazės apkrovos, jei jūsų nukreipimo URL nukentėjo labai dažnai, ir / ar jūsų svetainė yra labai užsiėmę ir dažnai nerastas puslapių."],"Expire Logs":[null,""],"days (enter 0 for no expiry)":[null,""],"RSS Token":[null,""],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Leisti pašarų skaitytojams susipažinti su Nukreipiama RSS (palikti tuščią, jei norite automatiškai kurti unikalią žymę)"],"URL Monitoring":[null,"URL stebėsena"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Galite Nukreipiama aptikti URL ir turi automatinio peradresavimo, sukurtas konkrečiai grupei."],"Post &amp; Page URLs":[null,""],"Don't monitor":[null,"Nekontroliuoja"],"Monitor new posts":[null,"Stebėti naujus pranešimus"],"Category URLs":[null,"Kategorija URL"],"Update":[null,"atnaujinti"],"Import":[null,"importuoti"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Čia galite importuoti nukreipimai iš esamų. Htaccess failą, CSV failą, arba Nukreipiama XML."],"Import into":[null,"importo į"],"Upload":[null,"Įkelti"],"Note that the group is ignored when uploading an XML file.":[null,"Atkreipkite dėmesį, kad grupėje yra ignoruojamas, kai įkelti XML failą."],"Delete Redirection":[null,"ištrinti Nukreipiama"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Pasirinkus šią parinktį, bus ištrinti visus peradresavimus, visų rąstų, ir bet kokių galimybių, susijusių su Nukreipiama plugin. Įsitikinkite, kad tai, ką norite daryti."],"Tracked":[null,"Vikšrinės"],"Whether to track 'hits' to items":[null,"Ar sekti \"hitai\" elementų"],"Enabled":[null,"įjungta"],"Disabling a group will disable all items contained within it":[null,"Išjungus grupės išjungti visus elementus, joje esančios"],"Log 404s":[null,"Prisijungti 404s"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Išjungta: Jūs turite įjungti<a href=\"options-permalink.php\">permalinks</a> before using this</strong>"],"<small>No options have been set</small>":[null,"<small>Nėra galimybės nustatyti</small>"],"Location":[null,"vieta"],"WordPress is installed in: <code>%s</code>":[null,"WordPress is installed in: <code>%s</code>"],"Canonical":[null,"Canonical"],"Leave as is":[null,"Leave as is"],"Strip WWW (%s)":[null,"Strip WWW (%s)"],"Force WWW (www.%s)":[null,"Force WWW (www.%s)"],"Strip Index":[null,"Strip Index"],"Strip index files (html,php)":[null,"Ruože indeksą failus (HTML, PHP)"],"Memory Limit":[null,"atminties Limito"],"Server default":[null,"serverio nutylėjimą"],"Error Level":[null,"klaidų lygis"],"No errors":[null,"Nėra klaidų"],"Show errors":[null,"Rodyti klaidas"],"Ban IPs":[null,"uždrausti IP"],"Allow IPs":[null,"leisti IP"],"Raw .htaccess":[null,"Žalias. Htaccess"],"Site URL":[null,"Svetainės URL"],"Advanced: For management of external sites":[null,"Detali: valdymo išorinių svetainių"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Vieta yra neteisingas - patikrinti, kad sekai</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong> negalite rašyti sukonfigūruotas <code> Htaccess </code> Failas - patikrinti failo teises </strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>neįgaliesiems įveskite <code> vietą Htaccess</code>, kad tai galioja</strong>"],"strip WWW":[null,"juostelės WWW"],"force WWW":[null,"jėgos WWW"],"strip index":[null,"juostelės indeksas"],"memory limit at %dMB":[null,"atminties limitą %dMB"],"no errors":[null,"nėra klaidų"],"show errors":[null,"Rodyti klaidas"],"IPs are banned":[null,"IP yra uždraustas"],"IPs are allowed":[null,"IP yra leidžiama"],"Redirect to URL":[null,"Nukreipti į URL"],"Redirect to random post":[null,"Nukreipti į Atsitiktinis užrašas"],"Pass-through":[null,"Pass-through"],"Error (404)":[null,"Klaida (404)"],"Do nothing":[null,"nieko nedaryti"],"WordPress":[null,"WordPress"],"404 Errors":[null,"404 Errors"],"Strip WWW":[null,"juostelės WWW"],"Force WWW":[null,"jėga WWW"],"Strip index.php":[null,"juostelės index.php"],"Redirections":[null,"peradresavimai"],"Modified Posts":[null,"Modifikuota Pranešimai"],"Previous":[null,"ankstesnis"],"Next":[null,"kitas"],"%d per-page":[null,"%d per-page"],"Displaying %s&#8211;%s of %s":[null,"Displaying %s&#8211;%s of %s"],"Yes":[null,"taip"],"No":[null,"ne"],"Sorry, but your redirection was not created":[null,"Atsiprašome, tačiau jūsų peradresavimo nebuvo sukurta"],"Settings":[null,"Nustatymai"],"Please wait...":[null,"Prašome palaukti ..."],"Redirection":[null,"Nukreipiama"],"Your module was successfully created":[null,"Jūsų modulis buvo sėkmingai sukurta"],"Your module was not created - did you provide a name?":[null,"Jūsų modulis nebuvo sukurta tu vardą?"],"Your options were updated":[null,"Jūsų galimybės buvo atnaujintos"],"Redirection data has been deleted and the plugin disabled":[null,"Nukreipiama duomenys buvo ištrinti ir įjungti neįgaliesiems"],"%d redirection was successfully imported":[null,"%d redirections were successfully imported"],"No items were imported":[null,"Nėra elementų, buvo importuoti"],"Your logs have been deleted":[null,"Jūsų rąstai buvo ištrintos"],"Your group was added successfully":[null,"Jūsų grupė buvo sėkmingai įrašytas."],"Please specify a group name":[null,"Prašome nurodyti grupės pavadinimą,"],"Redirection is available in":[null,"Nukreipiama yra išversta į"],"URL only":[null,"tik URL"],"HTTP Code":[null,"HTTP Kodas"],"URL and login status":[null,"URL ir prisijungimo statuso"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."],"Logged In":[null,"Prisijungimas:"],"Logged Out":[null,"Atsijungimas"],"URL and user agent":[null,"URL ir vartotojo agentas"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Lankytojai bus nukreipiami iš šaltinio URL, jei user-agent atitinka. Galite nurodyti <em>atitiko</em>, kad paskirties URL adresą siųsti lankytojus, jei jie rungtynės, ir <em> neatitiko </em>, jei jie nesutampa. , Paliekant URL tuščią, reiškia, kad lankytojas nėra nukreipti. <strong>Visos rungtynės yra atlikti kaip reguliarios išraiškos</strong> . \n"],"Matched":[null,"Sutampa"],"Not matched":[null,"nesutampa"],"URL and referrer":[null,"URL ir nukreipimo"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Lankytojas bus nukreiptas nuo šaltinio URL, jei refererių rungtynės. Galite nurodyti <em>atitiko</em>, kad paskirties URL adresą siųsti lankytojus, jei jie rungtynės, ir <em>neatitiko</ em>, jei jie nesutampa. , Paliekant URL tuščią, reiškia, kad lankytojas nėra nukreipti."],"http://urbangiraffe.com/plugins/redirection/":[null,""],"Manage all your 301 redirects and monitor 404 errors":[null,"Tvarkyti visus savo 301 peradresavimą ir stebėti klaidas 404"],"John Godley":[null,""],"http://urbangiraffe.com":[null,""]}
 
locale/json/redirection-nl_NL.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2017-07-10 19:35:45+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"nl","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Redirection saved":[null,""],"Log deleted":[null,""],"Settings saved":[null,""],"Group saved":[null,""],"Module saved":[null,""],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","",""],"pass":[null,""],"All groups":[null,""],"301 - Moved Permanently":[null,""],"302 - Found":[null,""],"307 - Temporary Redirect":[null,""],"308 - Permanent Redirect":[null,""],"401 - Unauthorized":[null,""],"404 - Not Found":[null,""],"410 - Found":[null,""],"Title":[null,""],"When matched":[null,""],"with HTTP code":[null,""],"Show advanced options":[null,""],"Matched Target":[null,""],"Unmatched Target":[null,""],"Saving...":[null,""],"View notice":[null,""],"Invalid source URL":[null,""],"Invalid redirect action":[null,""],"Invalid redirect matcher":[null,""],"Unable to add new redirect":[null,""],"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,"WWW verwijderen"],"Add WWW":[null,"WWW toevoegen"],"Search by IP":[null,"Zoek op IP"],"Select bulk action":[null,"Bulk actie selecteren"],"Bulk Actions":[null,"Bulk acties"],"Apply":[null,"Toepassen"],"First page":[null,"Eerste pagina"],"Prev page":[null,"Vorige pagina"],"Current Page":[null,"Huidige pagina"],"of %(page)s":[null,"van %(pagina)s"],"Next page":[null,"Volgende pagina"],"Last page":[null,"Laatste pagina"],"%s item":["%s items","",""],"Select All":[null,""],"Sorry, something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Beheer al je 301-redirects en hou 404-fouten in de gaten."],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Je mag Redirection gratis gebruiken - het leven is vurrukuluk! Desalniettemin heeft het veel tijd en moeite gekost om Redirection te ontwikkelen. Als je Redirection handig vind, kan je de ontwikkeling ondersteunen door een {{strong}}kleine donatie{{/strong}} te doen."],"Redirection Support":[null,"Ondersteun Redirection"],"Support":[null,"Ondersteuning"],"404s":[null,"404s"],"404s from %s":[null,"404s vanaf %s"],"Log":[null,"Log"],"Delete Redirection":[null,"Verwijder Redirection"],"Upload":[null,"Uploaden"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"Hier kan je redirects importeren vanuit een bestaand {{code}}.htacces{{/code}} bestand of een CSV-bestand."],"Import":[null,"Importeren"],"Update":[null,"Bijwerken"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"URL automatisch genereren"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"RSS-token"],"Don't monitor":[null,"Niet controleren"],"Monitor changes to posts":[null,"Veranderingen aan berichten monitoren"],"404 Logs":[null,"404 logboeken"],"(time to keep logs for)":[null,"(tijd om logboeken voor te bewaren)"],"Redirect Logs":[null,"Redirect logboeken"],"I'm a nice person and I have helped support the author of this plugin":[null,"Ik ben een aardig persoon en ik heb de auteur van deze plugin geholpen met ondersteuning."],"Plugin support":[null,"Ondersteuning van de plugin"],"Options":[null,"Instellingen"],"Two months":[null,"Twee maanden"],"A month":[null,"Een maand"],"A week":[null,"Een week"],"A day":[null,"Een dag"],"No logs":[null,"Geen logs"],"Modules":[null,"Modules"],"Export to CSV":[null,"Exporteer naar CSV"],"Delete All":[null,"Verwijder alles"],"Redirection Log":[null,"Redirection-log"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,""],"Add Group":[null,"Groep toevoegen"],"Search":[null,"Zoeken"],"Groups":[null,"Groepen"],"Save":[null,"Opslaan"],"Group":[null,"Groep"],"Match":[null,"Vergelijk met"],"Add new redirection":[null,"Nieuwe redirect toevoegen"],"Cancel":[null,"Annuleren"],"Download":[null,"Download"],"Unable to perform action":[null,"Onmogelijk om actie uit te voeren"],"No items were imported":[null,"Er zijn geen items geïmporteerd."],"%d redirection was successfully imported":["%d redirections were successfully imported","Er is %d redirect geïmporteerd.","Er zijn %d redirects geïmporteerd."],"Redirection":[null,"Redirection"],"Settings":[null,"Instellingen"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,""],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,""],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Automatisch www toevoegen aan of verwijderen van je website."],"Default server":[null,"Standaard server"],"Canonical URL":[null,"Canonical URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress is geïnstalleerd in: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess Locatie"],"Do nothing":[null,"Niets doen"],"Error (404)":[null,"Fout (404)"],"Pass-through":[null,"Doorlaten"],"Redirect to random post":[null,"Redirect naar willekeurig bericht"],"Redirect to URL":[null,"Redirect naar URL"],"Invalid group when creating redirect":[null,""],"Configure":[null,"Configureer"],"Show only this IP":[null,"Toon alleen dit IP"],"IP":[null,"IP-adres"],"Source URL":[null,"Bron-URL"],"Date":[null,"Datum"],"Add Redirect":[null,"Redirect toevoegen"],"All modules":[null,"Alle modules"],"View Redirects":[null,"Redirects bekijken"],"Module":[null,"Module"],"Redirects":[null,"Redirects"],"Name":[null,"Naam"],"Filter":[null,"Filter"],"Reset hits":[null,""],"Enable":[null,"Inschakelen"],"Disable":[null,"Schakel uit"],"Delete":[null,"Verwijderen"],"Edit":[null,"Bewerk"],"Last Access":[null,"Laatste hit"],"Hits":[null,"Hits"],"URL":[null,"URL"],"Type":[null,"Type"],"Modified Posts":[null,"Gewijzigde berichten"],"Redirections":[null,"Redirects"],"User Agent":[null,"User agent"],"URL and user agent":[null,"URL en user agent"],"Target URL":[null,"Doel-URL"],"URL only":[null,"Alleen URL"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL en referrer"],"Logged Out":[null,"Uitgelogd"],"Logged In":[null,"Ingelogd"],"URL and login status":[null,"URL en loginstatus"]}
 
locale/json/redirection-pl_PL.json DELETED
@@ -1 +0,0 @@
1
- {"":{"project-id-version":"Redirection v2.1.22","report-msgid-bugs-to":"","pot-creation-date":"2009-09-26 19:49+0100","po-revision-date":"2009-09-26 21:03+0100","last-translator":"Amadeusz Majerczyk <kontakt@paletki-dyskowce.com>","language-team":"Kuba Majerczyk <kontakt@paletki-dyskowce.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;","x-poedit-language":"Polish","x-poedit-country":"POLAND","x-poedit-sourcecharset":"utf-8","x-poedit-keywordslist":"__;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2","x-poedit-basepath":"../","x-textdomain-support":"yes","x-poedit-searchpath-0":"."},"Sorry, but your redirection was not created":[null,"Przepraszamy, przekierowanie nie zostało utworzone"],"Settings":[null,"Ustawienia"],"Redirection Help":[null,"Przekierowania - Pomoc"],"Redirection Documentation":[null,"Dokumentacja wtyczki Przekierowania"],"Redirection Support Forum":[null,"Forum Wsparcia Wtyczki"],"Redirection Bug Tracker":[null,"Bug Tracker Wtyczki"],"Redirection FAQ":[null,"FAQ Wtyczki"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"Proszę przeczytać dokumentację i FAQ, oraz sprawdzić bug tracker przed zadaniem pytania."],"Redirection":[null,"Przekierowanie"],"Your module was successfully created":[null,"Moduł został pomyślnie utworzony"],"Your module was not created - did you provide a name?":[null,"Moduł nie został utworzony - czy wprowadziłeś swoją nazwę?"],"Your options were updated":[null,"Twoje ustawienia zostały zaktualizowane"],"Redirection data has been deleted and the plugin disabled":[null,"Dane przekierowań zostały skasowane, a wtyczka wyłączona"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d przekierowanie zaimportowano pomyślnie","%d przekierowania zaimportowano pomyślnie","%d przekierowań zaimportowano pomyślnie"],"No items were imported":[null,"Niczego nie zaimportowano"],"Your logs have been deleted":[null,"Logi zostały skasowane"],"Your group was added successfully":[null,"Grupa została pomyślnie dodana"],"Please specify a group name":[null,"Proszę utworzyć nazwę dla grupy"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"XML importing is only available with PHP5 - you have PHP4.":[null,"Import XML jest dostępny tylko dla PHP5 - aktualnie używasz PHP4."],"URL and login status":[null,"URL i status użytkownika"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Adres docelowy zostanie wybrany z jednego z następujących adresów i będzie zależeć od tego czy użytkownik jest zalogowany czy nie. Nie wpisanie żadnego adresu będzie oznaczać brak przekierowania."],"Logged In":[null,"Zalogowany"],"Logged Out":[null,"Wylogowany"],"URL and referrer":[null,"URL i odsyłacz"],"Referrer":[null,"Odsyłacz"],"Regex":[null,"Wyraż.reg."],"HTTP Code":[null,"Kod HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Odwiedzający zostanie przekierowany, jeśli przybywa z określonego odsyłacza. Możesz określić <em>dopasowany</em> URL docelowy na który użytkownik zostanie przekierowany jeśli przybywa z określonego odsyłacza, oraz adres na który zostanie przekierowany jeśli przybywa z innego niż określony. Nie wpisanie żadnego adresu będzie oznaczać brak przekierowania."],"Matched":[null,"Zgodny"],"Not matched":[null,"Niezgodny"],"URL only":[null,"Tylko URL"],"Target URL":[null,"Docelowy URL"],"URL and user agent":[null,"URL i klient użytkownika"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"Klient Użytkownika"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Odwiedzający zostanie przekierowany, jeśli używa określonej przeglądarki. Możesz określić <em>dopasowany</em> URL docelowy na który użytkownik zostanie przekierowany jeśli korzysta z konkretnej przeglądarki, oraz adres na który zostanie przekierowany jeśli używa innej niż określona. Nie wpisanie żadnego adresu będzie oznaczać brak przekierowania. <strong>Wszystkie dopasowania są interpretowane jako wyrażenia regularne</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"404 Errors":[null,"Strony Błędu 404"],"Redirections":[null,"Przekierowania"],"Modified posts":[null,"Zmodyfikowane posty"],"Strip WWW":[null,"Usuwaj WWW"],"Force WWW":[null,"Wymuszaj WWW"],"Strip index.php":[null,"Usuwaj index.php"],"Previous":[null,"Poprzednie"],"Next":[null,"Następne"],"%d per-page":[null,"%d na-stronę"],"Displaying %s&#8211;%s of %s":[null,"Wyświetlono %s&#8211;%s z %s"],"Redirect to URL":[null,"Przekieruj do URL"],"Redirect to random post":[null,"Przekieruj do losowego postu"],"Pass-through":[null,"Bez przekierowania"],"Error (404)":[null,"Błąd (404)"],"Do nothing":[null,"Nie rób niczego"],"Log 404s":[null,"Loguj błędy 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"Zablokowane: Musisz aktywować <a href=\"options-permalink.php\">linki bezpośrednie</a> zanim użyjesz tej opcji</strong>"],"<small>No options have been set</small>":[null,"Nie ustawiono niczego"],"Location":[null,"Lokalizacja"],"WordPress is installed in: <code>%s</code>":[null,"WordPress jest zainstalowany w: <code>%s</code>"],"Canonical":[null,"Atrybut Canonical"],"Leave as is":[null,"Zostaw tak jak jest"],"Strip WWW (%s)":[null,"Usuwaj WWW (%s)"],"Force WWW (www.%s)":[null,"Wymuszaj WWW (www.%s)"],"Strip Index":[null,"Usuwaj Index"],"Strip index files (html,php)":[null,"Usuwaj nazwę pliku index (html,php)"],"Memory Limit":[null,"Limit Pamięci"],"Server default":[null,"Domyślne dla serwera"],"Error Level":[null,"Poziom Błędu"],"No errors":[null,"Brak błędów"],"Show errors":[null,"Pokaż błędy"],"Ban IPs":[null,"Banowane IP"],"Allow IPs":[null,"Dozwolone IP"],"Site URL":[null,"URL Strony"],"Advanced: For management of external sites":[null,"Zaawansowane: Do zarządzania zewnętrznymi stronami"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Nieprawidłowa lokalizacja - sprawdź czy taka ścieżka istnieje</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Nie można zapisać do skonfigurowanego pliku <code>.htaccess</code> - sprawdź uprawnienia do pliku</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Zabronione: podaj poprawną lokalizację pliku <code>.htaccess</code></strong>"],"strip WWW":[null,"usuwaj WWW"],"force WWW":[null,"wymuszaj WWW"],"strip index":[null,"usuwaj index"],"memory limit at %dMB":[null,"limit pamięci w %dMB"],"no errors":[null,"brak błędów"],"show errors":[null,"pokaż błędy"],"IPs are banned":[null,"Zbanowane numery IP"],"IPs are allowed":[null,"Dozwolone numery IP"]," for external site: <code>%s</code>":[null," dla zewnętrznej strony: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"Usuwaj nazwę pliku index (html,php,asp)"],"Time Limit":[null,"Limit Czasu"],"30 seconds":[null,"30 sekund"],"1 minute":[null,"1 minuta"],"2 minutes":[null,"2 minuty"],"5 minutes":[null,"5 minut"],"As long as possible":[null,"Tak długo jak to możliwe"],"time limit set as long as possible":[null,"limit czasu ustawiony na najdłużej jak to możliwe"],"time limit at %ss":[null,"limit czasu w %ss"],"Add new redirection":[null,"Dodaj nowe przekierowanie"],"Your redirection has been added.":[null,"Przekierowanie zostało dodane."],"Source URL":[null,"Źródłowy URL"],"Match":[null,"Porównanie"],"Action":[null,"Działanie"],"Regular expression":[null,"Wyrażenie regularne"],"Group":[null,"Grupa"],"Add Redirection":[null,"Dodaj Przekierowanie"],"Name":[null,"Nazwa"],"Tracked":[null,"Śledzony"],"Whether to track 'hits' to items":[null,"Czy śledzić kliknięcia poszcz. pozycji"],"Enabled":[null,"Aktywne"],"Disabling a group will disable all items contained within it":[null,"De-aktywacja grupy spowoduje de-aktywację wszystkich pozycji w niej zawartych"],"Save":[null,"Zapisz"],"Cancel":[null,"Anuluj"],"edit group":[null,"edytuj grupę"],"disabled":[null,"zablokowane"],"Groups for module":[null,"Grupy dla modułu"],"Module":[null,"Moduł"],"Search":[null,"Szukaj"],"go":[null,"potwierdź"],"Hits":[null,"Kliknięcia"],"Select All":[null,"Zaznacz Wszystko"],"Toggle":[null,"Przełącz"],"Reset Hits":[null,"Resetuj Kliknięcia"],"Delete":[null,"Usuń"],"Move To":[null,"Przenieś Do"],"Go":[null,"Potwierdź"],"re-order":[null,"reorganizuj"],"save order":[null,"zapisz kolejność"],"You have no groups in this module.":[null,"Nie istnieją grupy w tym module."],"Add Group":[null,"Dodaj Grupę"],"Add":[null,"Dodaj"],"No items have been selected":[null,"Nie zaznaczono niczego"],"Are you sure?":[null,"Czy jesteś pewien?"],"Please wait...":[null,"Proszę czekać.."],"%s by matching %s":[null,"%s przez dopasowanie %s"],"Title":[null,"Tytuł"],"optional":[null,"opcjonalnie"],"Redirections for group":[null,"Przekierowania dla grup"],"Last Access":[null,"Ostatnio Używano"],"Type":[null,"Typ"],"URL":[null,"URL"],"Position":[null,"Pozycja"],"You have no redirections.":[null,"Nie ma przekierowań."],"Redirection Log":[null,"Log Przekierowania"],"Bulk Actions":[null,"Masowe Działanie"],"Apply":[null,"Zastosuj"],"Filter":[null,"Filtr"],"Date":[null,"Data"],"IP":[null,"IP"],"There are no logs to display!":[null,"Nie ma logów do wyświetlenia!"],"Process Current Logs":[null,"Przetwarzaj Aktualne Logi"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"To działanie obejmie wszystkie aktualnie dostępne logi (wpisując frazę w pole wyszukiwania możesz ograniczyć ilość usuwanych pozycji)"],"Delete Logs":[null,"Skasuj Logi"],"Redirect to":[null,"Przekieruj do"],"Redirected by":[null,"Przekierowane przez"],"for":[null,"dla"],"View as":[null,"Podejrzyj jako"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"edytuj"],"delete":[null,"usuń"],"reset":[null,"reset"],"Modules":[null,"Moduły"],"Details":[null,"Szczegóły"],"Groups":[null,"Grupy"],"Items":[null,"Elementy"],"Operations":[null,"Działania"],"Note: Hits are dependant on log entries":[null,"Uwaga: Kliknięcia zależą od zapisu logów "],"You have no modules defined yet":[null,"Nie zdefiniowano jeszcze żadnego modułu"],"Add Module":[null,"Dodaj Moduł"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Moduł jest elementem, który ustala sposób realizowania przekierowań. Moduł WordPress kontroluje elementy obsługiwane przez WordPressa, moduł Apache kontroluje elementy poprzez <code>.htaccess</code>, moduł 404 określa logowanie błędów 404."],"Create":[null,"Utwórz"],"Options":[null,"Ustawienia"],"Auto-generate URL":[null,"Auto-generowanie URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Ta opcja generuje automatycznie adres URL, jeśli żaden nie został wpisany."],"IP Lookup Service":[null,"Usługa IP Lookup"],"Plugin Support":[null,"Wsparcie dla Wtyczki"],"I'm a nice person and I have helped support the author of this plugin":[null,"Jestem miłą osobą i wsparłem(am) autora tej wtyczki"],"Logging":[null,"Zapisywanie Logów"],"log redirected requests":[null,"loguj przekierowane wywołania"],"log 404 Not Found requests":[null,"loguj komunikaty 404 (nie znaleziono)"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Odznaczenie jednej lub obu opcji zmniejszy obciążenie bazy danych w przypadku kiedy Twoje przekierowane adresy URL są często klikane i/lub kiedy na stronie panuje duży ruch i często jest zwracany błąd 404."],"Expire Logs":[null,"Ważność Logów"],"days (enter 0 for no expiry)":[null,"dni (wpisz 0 aby nie traciły ważności)"],"RSS Token":[null,"Token RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Unikalny token umożliwiający czytnikom kanału dostęp do przekierowań RSS (zostaw puste aby wygenerować automatycznie)"],"URL Monitoring":[null,"Monitorowanie URL'i"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Możesz ustawić aby Wtyczka wykrywała zmiany w adresach URL i tworzyła automatyczne przekierowania w wybranej grupie."],"Post &amp; Page URLs":[null,"URL'e Postów i Stron"],"Don't monitor":[null,"Nie monitoruj"],"Monitor new posts":[null,"Monitoruj nowe wpisy"],"Category URLs":[null,"URL'e Kategorii"],"Update":[null,"Aktualizuj"],"Import":[null,"Import"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Tu możesz zaimportować przekierowania z istniejących plików .htaccess, CSV lub XML"],"Import into":[null,"Importuj do"],"Upload":[null,"Prześlij"],"Note that the group is ignored when uploading an XML file.":[null,"Zauważ że grupa jest ignorowana jeśli przesyłasz plik XML."],"Delete Redirection":[null,"Usuń Przekierowanie"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Ta opcja spowoduje usunięcie wszystkich przekierowań, logów i wszelkich opcji dotyczących wtyczki Przekierowania. Upewnij się czy na pewno chcesz to zrobić, zanim klikniesz."],"Redirects":[null,"Przekierowania"],"Log":[null,"Logi"],"Support":[null,"Wsparcie"],"Redirection Support":[null,"Wsparcie Wtyczki"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Redirection jest bezpłatną wtyczką - życie jest piękne! Jednakże, jej napisanie udoskonalanie pochłonęło bardzo wiele czasu i energii więc jeśli jest dla Ciebie użyteczna możesz wesprzeć jej rozwój <strong>przekazując niewielką darowiznę</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"To motywuje mnie do dalszego rozwoju, nieustannego udzielania wsparcia technicznego, wprowadzania nowych opcji i uwzględniania waszych sugestii. Ty otrzymujesz użyteczne oprogramowanie a ja mogę zajmować się jego tworzeniem. Wszyscy na tym zyskują."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Jeśli używasz tej wtyczki na stronie komercyjnej, lub uważasz że jest szczególnie użyteczna, wtedy możesz rozważyć <strong>dotację komercyjną</strong>."],"Individual<br/>Donation":[null,"Indywidualna<br/>Darowizna"],"Commercial<br/>Donation":[null,"Komercyjna<br/>Dotacja"],"Translations":[null,"Tłumaczenia"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Jeśli znasz kilka jezyków, to możesz rozważyć wesprzeć rozwój wtyczki tworząc tłumaczenie:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> and <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, in addition to being an individual supporter.":[null,"Każdy tłumacz otrzyma link do swojej strony zamieszczony na stronie wtyczki na <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> oraz na <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, oprócz zaliczenia go do grona indywidualnych wspierających."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Szczegóły dotyczące tworzenia tłumaczeń można znaleźć w tym <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">przewodniku o tłumaczeniu wtyczek do WordPressa</a>."]}
 
locale/json/redirection-pt_BR.json DELETED
@@ -1 +0,0 @@
1
- {"404":[null,"404"],"":{"project-id-version":"Redirection 2.1.28","report-msgid-bugs-to":"","pot-creation-date":"2011-02-20 20:39-0300","po-revision-date":"2011-02-20 20:43-0300","last-translator":"João Netto <nettojp@gmail.com>","language-team":"W3P Projetos Web, Joao Netto <ppadron@w3p.com.br, nettojp@gmail.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Portuguese","x-poedit-country":"BRAZIL","x-poedit-sourcecharset":"utf-8","x-poedit-keywordslist":"__;_e;__ ;_e","x-poedit-basepath":".","x-poedit-searchpath-0":"..","x-poedit-searchpath-1":"."},"Sorry, but your redirection was not created":[null,"Desculpe, mas seu redirecionamento não foi criado"],"Settings":[null,"Configurações"],"Please wait...":[null,"Por favor aguarde..."],"Are you sure?":[null,"Tem certeza disso?"],"No items have been selected":[null,"Nenhum item selecionado"],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Seu módulo foi criado com sucesso"],"Your module was not created - did you provide a name?":[null,"Seu módulo não foi criado - tem certeza de que forneceu um nome?"],"Your options were updated":[null,"Suas opções foram atualizadas"],"Redirection data has been deleted and the plugin disabled":[null,"Dados do Redirection foram removidos e o plugin foi desativado"],"No items were imported":[null,"Nenhum item foi importado"],"Your logs have been deleted":[null,"Seus logs foram removidos"],"Your group was added successfully":[null,"Seu grupo foi adicionado com sucesso"],"Please specify a group name":[null,"Por favor especifique um nome para o grupo"],"Redirection is available in":[null,"Redirecionamento está disponível em"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s importado em %s às %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"A importação de XML está disponível apenas para PHP5 - você está usando PHP4."],"URL and login status":[null,"URL e status de login"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"A URL de destino será escolhida a partir de uma das seguintes URLs, dependendo se o usuário fez o login ou não. Deixar uma URL vazia significa que o usuário não é redirecionado."],"Logged In":[null,"Usuário fez login"],"Logged Out":[null,"Usuário fez logout"],"URL and referrer":[null,"URL e referrer"],"Referrer":[null,"Referrer"],"Regex":[null,"Expressão Regular"],"HTTP Code":[null,"Código HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"O visitante será redirecionado a partir da URL de origem se o referrer corresponder. Se <em>corresponder</em> você pode especificar uma URL de destino para onde encaminhar os visitantes, e outra URL se <em>não corresponder</em>. Deixar uma URL vazia significa que o visitante não será redirecionado."],"Matched":[null,"Corresponde"],"Not matched":[null,"Não corresponde"],"URL only":[null,"URL"],"Target URL":[null,"URL de destino"],"URL and user agent":[null,"URL e User-Agent"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"User-Agent"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"O visitante será redirecionado a partir da URL de origem se o <em>User-Agent</em> corresponder. Se <em>corresponder</em> você pode especificar uma URL de destino para onde encaminhar os visitantes, e outra URL se não <em>não corresponder</em> caso contrário. Deixar uma URL vazia significa que o visitante não será redirecionado.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Apache"],"Redirections":[null,"Redirecionamentos"],"Modified Posts":[null,"Posts modificados"],"Yes":[null,"Sim"],"No":[null,"Non"],"404 Errors":[null,"Erros 404"],"Strip WWW":[null,"Remover WWW"],"Force WWW":[null,"Forçar WWW"],"Strip index.php":[null,"Remover index.php"],"Previous":[null,"Anterior"],"Next":[null,"Próximo"],"%d per-page":[null,"%d por página"],"Displaying %s&#8211;%s of %s":[null,"Exibindo %s&#8211;%s de %s"],"Redirect to URL":[null,"Redirecionar para URL"],"Redirect to random post":[null,"Redirecionar para um post aleatório"],"Pass-through":[null,"Pass-through"],"Error (404)":[null,"Página inexistente (Erro 404)"],"Do nothing":[null,"Fazer nada"],"Log 404s":[null,"Armazenar log de erros 404"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Desativedo: você deve ativar <a href=\"options-permalink.php\">permalinks</a> antes de utilizar</strong><strong>Désactivé: vous devez activer <a href=\"options-permalink.php\">les permaliens</a> avant de l'utiliser</strong>"],"<small>No options have been set</small>":[null,"<small>Nenhuma opção foi definida</small>"],"Location":[null,"Caminho"],"WordPress is installed in: <code>%s</code>":[null,"Wordpress está instalado em: <code>%s</code>"],"Canonical":[null,"canônica"],"Leave as is":[null,"Deixar como está"],"Strip WWW (%s)":[null,"Remover WWW (%s)"],"Force WWW (www.%s)":[null,"Forçar WWW (www.%s)"],"Strip Index":[null,"Remover Index"],"Strip index files (html,php)":[null,"Remover arquivos de índice (html, php)"],"Memory Limit":[null,"Limite de Memória"],"Server default":[null,"Padrão do servidor"],"Error Level":[null,"Nível de Erro"],"No errors":[null,"Sem erros"],"Show errors":[null,"Exibir erros"],"Ban IPs":[null,"Banir IPs"],"Allow IPs":[null,"Permitir IPs"],"Raw .htaccess":[null,".htacess original"],"Site URL":[null,"URL do Site"],"Advanced: For management of external sites":[null,"Avançado: Para gerenciamento de sites externos"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Caminho inválido - verifique se o caminho existe</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>Não foi possível gravar o <code>.htaccess</code> - verifique as permissões do arquivo</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Desativado: insira o caminho do arquivo <code>.htaccess</code></strong>"],"strip WWW":[null,"remover WWW"],"force WWW":[null,"forçar WWW"],"strip index":[null,"remover index"],"memory limit at %dMB":[null,"limite de memória em %dMB"],"no errors":[null,"sem erros"],"show errors":[null,"exibir erros"],"IPs are banned":[null,"IPs são banidos"],"IPs are allowed":[null,"IPs são permitidos"],"Add new redirection":[null,"Adicionar novo redirecionamento"],"Your redirection has been added.":[null,"Seu redirecionamento foi adicionado."],"Source URL":[null,"URL de origem"],"Match":[null,"Correspondente à"],"Action":[null,"Ação"],"Regular expression":[null,"Expressão regular"],"Group":[null,"Grupo"],"Add Redirection":[null,"Adicionar redirecionamento"],"Name":[null,"Nome"],"Tracked":[null,"Rastrado"],"Whether to track 'hits' to items":[null,"Rastrar ou não os acessos aos itens"],"Enabled":[null,"Ativado"],"Disabling a group will disable all items contained within it":[null,"Desativer um grupo irá desativar todos os itens nele contidos"],"Save":[null,"Salvar"],"Cancel":[null,"Cancelar"],"edit group":[null,"editar grupo"],"disabled":[null,"desativado"],"Groups for module":[null,"Grupos do módulo"],"Module":[null,"Módulo"],"Search":[null,"Buscar"],"go":[null,"ir"],"Hits":[null,"Acessos"],"Select All":[null,"Selecionar Todos"],"Toggle":[null,"Alternar"],"Reset Hits":[null,"Reiniciar contagem de acessos"],"Delete":[null,"Remover"],"Move To":[null,"Mover para"],"Go":[null,"ok"],"re-order":[null,"Reordenar"],"save order":[null,"salvar ordem"],"You have no groups in this module.":[null,"Você não possuim nenhum grupo neste módulo."],"Add Group":[null,"Adicionar Grupo"],"Add":[null,"Adicionar"],"%s by matching %s":[null,"%s correspondentes à %s"],"Title":[null,"Título"],"optional":[null,"opcional"],"Redirections for group":[null,"Redirecionamentos para o grupo"],"Last Access":[null,"Último Acesso"],"Type":[null,"Tipo"],"URL":[null,"URL"],"Position":[null,"Posição"],"You have no redirections.":[null,"Você não possui redirecionamentos."],"Redirection Log":[null,"Log de Redirecionamentos"],"Bulk Actions":[null,"Ações em Massa"],"Apply":[null,"Aplicar"],"Filter":[null,"Filtro"],"Date":[null,"Data"],"IP":[null,"IP"],"There are no logs to display!":[null,"Nenhum log a ser exibido!"],"Process Current Logs":[null,"Processar Logs Atuais"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Estas ações afetarão todos os logs disponíveis (seu termo de busca irá restringir os itens do log)."],"Delete Logs":[null,"Remover Logs"],"Redirect to":[null,"Redirecionar para"],"Redirected by":[null,"Redirecionar por"],"for":[null,"para"],"View as":[null,"Visualizar como"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"editar"],"delete":[null,"remover"],"reset":[null,"reinicializar"],"Modules":[null,"Módulos"],"Details":[null,"Detalhes"],"Groups":[null,"Grupos"],"Items":[null,"Itens"],"Operations":[null,"Ações"],"Note: Hits are dependant on log entries":[null,"Aviso: Acessos dependem de entradas de log"],"You have no modules defined yet":[null,"Você ainda não possui nenhum módulo definido"],"Add Module":[null,"Adicionar Módulo"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Um módulo é um elemento de controle que define como os redirecionamentos são tratados. Elementos em um módulo do Wordpress são tratados pelo Wordpress, elementos em um módulo do Apache são tratados pelo <code>.htaccess</code>, e elementos em um módulo 404 afetam como os logs de erros 404 são armazenados."],"Create":[null,"Criar"],"Options":[null,"Opções"],"Auto-generate URL":[null,"Gerar URL automaticamente"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Isso será utilizado para gerar automaticamente uma URL se nenhuma for fornecida. Você pode usar as tags especiais $dec$ (decimal) ou $hex$ (hexadecimal) para inserir um ID único"],"IP Lookup Service":[null,"Serviço de Lookup de IP"],"Plugin Support":[null,"Ajuda ao Plugin"],"I'm a nice person and I have helped support the author of this plugin":[null,"Sou uma pessoa legal e já ajudei o autor deste plugin"],"Logging":[null,"Armazenamento de Logs"],"log redirected requests":[null,"armazenar em log requisições redirecionadas"],"log 404 Not Found requests":[null,"armazenar em log requisições que geram erros 404 Not Found"],"Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found.":[null,"Desmarque uma ou ambas para desativar armazenamento de logs, melhorando performance do banco de dados caso suas URLs redirecionadas sejam frequentemente acessadas e/ou seu site é muito acessado e gera muitos erros 404."],"Expire Logs":[null,"Expirar Logs em"],"days (enter 0 for no expiry)":[null,"dias (insira 0 para nunca expirarem)"],"RSS Token":[null,"Token RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Um token único permitindo que leitores de feed acessem o RSS do plugin Redirection (deixe vazio para gerar automaticamente)"],"URL Monitoring":[null,"Monitoração de URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Redirection pode detectar mudanças em URLs e criar automaticamente um redirecionamento em um grupo específico."],"Post &amp; Page URLs":[null,"URLs de Post &amp; Página"],"Don't monitor":[null,"Não monitorar"],"Monitor new posts":[null,"Monitorar novos posts"],"Category URLs":[null,"URLs de Categorias"],"Update":[null,"Atualizar"],"Import":[null,"Importar"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Aqui você pode importar redirecionamentos de um arquivo .htaccess, CSV ou XML.Vous pouvez importer des redirections depuis un fichier .htaccess, CSV ou XML."],"Import into":[null,"Importar em"],"Upload":[null,"Upload"],"Note that the group is ignored when uploading an XML file.":[null,"Note que o grupo é ignorado quando for feito o upload de um arquivo XML."],"Delete Redirection":[null,"Remover Plugin Redirection"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Selecionar esta opção irá remover todos os redirecionamentos, logs e todas as opções associadas ao plugin Redirection. Certifique-se de que é isso mesmo que deseja fazer."],"Redirects":[null,"Redirecionamentos"],"Log":[null,"Log"],"Support":[null,"Ajuda"],"Redirection Support":[null,"Ajuda do Redirection"],"Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>.":[null,"Redirection é gratuito para uso - ah como a vida é bela! Entretanto, seu desenvolvimento requer tempo e esforço, e se ele lhe foi útil você pode nos ajudar a manter o desenvolvimento através de uma <strong>pequena doação</strong>."],"This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins.":[null,"Isso servirá como um incentivo para que eu possa continuar o desenvolvimento, fornecer incontáveis horas de suporte, incluir novos recursos e implementar sugestões. Você ganha um software útil e eu continuo desenvolvendo-o. Todos ganham."],"If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>.":[null,"Se você está utilizando este plugin em um ambiente comercial, ou acredita que ele foi realemente útil, você pode considerar fazer uma <strong>doação comercial</strong>."],"Individual<br/>Donation":[null,"Doação<br />Individual"],"Commercial<br/>Donation":[null,"Doação<br/>Comercial"],"Translations":[null,"Traduções"],"If you're multi-lingual then you may want to consider donating a translation:":[null,"Se você é fluente em outro idioma talvez você possa considerar doar uma tradução:"],"All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter.":[null,"Todos os tradutores terão um link para seu site colocados no plugin homepage <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe </ a>, além de ser um apoiante individual."],"Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>.":[null,"Os detalhes sobre como criar uma tradução podem ser encontrados neste <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guia para tradução de plugins do Wordpress</a>."]}
 
locale/json/redirection-pt_PT.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2017-04-04 07:53:47+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"pt","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Configurações avançadas"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Faça a gestão dos redireccionamentos 301 e monitorize erros 404"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Redirection Support":[null,"Suporte do Redirection"],"Support":[null,"Suporte"],"404s":[null,"404s"],"404s from %s":[null,"404s de %s"],"Log":[null,"Registo"],"Delete Redirection":[null,"Eliminar redireccionamento"],"Upload":[null,"Carregar"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Importar"],"Update":[null,"Actualizar"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Gerar URL automaticamente"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Um token único que permite os leitores de feed acederem ao registo de redireccionamento RSS (deixar em branco para gerar automaticamente)"],"RSS Token":[null,"Token RSS"],"Don't monitor":[null,"Não monitorizar"],"Monitor changes to posts":[null,"Monitorizar alterações nos conteúdos"],"404 Logs":[null,"Registos de 404"],"(time to keep logs for)":[null,"(tempo a manter os registos)"],"Redirect Logs":[null,"Registos de redireccionamentos"],"I'm a nice person and I have helped support the author of this plugin":[null,"Eu sou boa pessoa e ajudei o autor deste plugin"],"Plugin support":[null,""],"Options":[null,"Opções"],"Two months":[null,"Dois meses"],"A month":[null,"Um mês"],"A week":[null,"Uma semana"],"A day":[null,"Um dia"],"No logs":[null,"Sem registos"],"Modules":[null,"Módulos"],"Export to CSV":[null,""],"Delete All":[null,"Eliminar tudo"],"Redirection Log":[null,"Registo de redireccionamento"],"optional":[null,"opcional"],"Description":[null,"Descrição"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,""],"Add Group":[null,"Adicionar grupo"],"Search":[null,"Pesquisar"],"Groups":[null,"Grupos"],"Save":[null,"Guardar"],"Add Redirection":[null,"Adicionar redireccionamento"],"Group":[null,"Grupo"],"Regular expression":[null,"Expressão regular"],"Action":[null,"Acção"],"Match":[null,""],"Your redirection has been added.":[null,"O seu redireccionamento foi adicionado."],"Add new redirection":[null,"Adicionar novo redireccionamento"],"Cancel":[null,"Cancelar"],"Download":[null,"Descarregar"],"Sorry, but your redirection was not created":[null,"Desculpe, o seu redireccionamento não foi criado"],"Unable to perform action":[null,"Não foi possível executar a acção"],"No items were imported":[null,"Nenhum item importado"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redireccionamento importado com sucesso","%d redireccionamentos importados com sucesso"],"Your options were updated":[null,"As suas opções foram actualizadas"],"Redirection":[null,"Redireccionamento"],"Settings":[null,"Definições"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,""],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Para ser utilizado com servidor Nginx. Necessita de configuração manual. O redireccionamento ocorre sem carregar o WordPress. Os acessos não são monitorizados. Isto é um módulo experimental."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Adicionar ou remover automaticamente www do seu site."],"Default server":[null,"Servidor por omissão"],"Canonical URL":[null,"URL canónico"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,"Localização do .htaccess"],"Do nothing":[null,"Não fazer nada"],"Error (404)":[null,"Erro (404)"],"Pass-through":[null,""],"Redirect to random post":[null,"Redireccionar para um conteúdo"],"Redirect to URL":[null,"Redireccionar para o URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Não foi possível adicionar um novo redireccionamento - elimine os redireccionamentos na página de opções e reinstale"],"Invalid source URL when creating redirect for given match type":[null,"URL de origem inválido ao criar o redirecionamento para o tipo de correspondência fornecido"],"Invalid group when creating redirect":[null,"Grupo inválido ao criar o redireccionamento"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Apenas pode redireccionar a partir de um URL relativo (<code>%s</code>) neste domínio (<code>%s</code>)."],"Source and target URL must be different":[null,"O URL de origem e o URL de destino têm de ser diferentes"],"Configure":[null,"Configurar"],"Show only this IP":[null,"Mostrar apenas este IP"],"IP":[null,"IP"],"Source URL":[null,"URL de origem"],"Date":[null,"Data"],"Add Redirect":[null,""],"All modules":[null,"Todos os módulos"],"View Redirects":[null,"Ver redireccionamentos"],"Module":[null,"Módulo"],"Redirects":[null,"Redireccionamentos"],"Name":[null,"Nome"],"Filter":[null,"Filtrar"],"No group filter":[null,""],"Reset Hits":[null,"Limpar acessos"],"Enable":[null,"Activar"],"Disable":[null,"Desactivar"],"Delete":[null,"Apagar"],"Edit":[null,"Editar"],"Last Access":[null,"Último acesso"],"Hits":[null,"Acessos"],"URL":[null,"Link"],"Type":[null,"Tipo"],"Modified Posts":[null,"Conteúdos alterados"],"Redirections":[null,"Redireccionamentos"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"\n"],"User Agent":[null,"Agente do utilizador"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"Firefox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL e agente do utilizador"],"Target URL":[null,"URL de destino"],"URL only":[null,"Apenas o URL"],"Not matched":[null,""],"Matched":[null,""],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,""],"HTTP Code":[null,"Código HTTP"],"Regex":[null,"ExprReg"],"Referrer":[null,"Referenciador"],"URL and referrer":[null,"URL e referenciador"],"Logged Out":[null,"Sem sessão iniciada"],"Logged In":[null,"Com sessão iniciada"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"O URL de destino será escolhido de um dos seguintes URL, dependendo se o utilizador iniciou ou não iniciou a sessão. Deixar um URL em branco significa que o utilizador não será redireccionado."],"URL and login status":[null,"URL e estado da sessão"]}
 
locale/json/redirection-ro_RO.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2017-08-01 19:35:22+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);","x-generator":"GlotPress/2.4.0-alpha","language":"ro","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Redirection saved":[null,""],"Log deleted":[null,""],"Settings saved":[null,""],"Group saved":[null,""],"Module saved":[null,""],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","","",""],"pass":[null,""],"All groups":[null,""],"301 - Moved Permanently":[null,""],"302 - Found":[null,""],"307 - Temporary Redirect":[null,""],"308 - Permanent Redirect":[null,""],"401 - Unauthorized":[null,""],"404 - Not Found":[null,""],"410 - Found":[null,""],"Title":[null,""],"When matched":[null,""],"with HTTP code":[null,""],"Show advanced options":[null,""],"Matched Target":[null,""],"Unmatched Target":[null,""],"Saving...":[null,""],"View notice":[null,""],"Invalid source URL":[null,""],"Invalid redirect action":[null,""],"Invalid redirect matcher":[null,""],"Unable to add new redirect":[null,""],"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","","",""],"Select All":[null,""],"Sorry, something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Administrează-ți toate redirecționările 301 și monitorizează erorile 404"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Redirecționarea este gratuită - viața e minunată și frumoasă! Totuși, a necesitat mult timp și efort pentru a-l dezvolta și, dacă ți-a fost de folos, poți contribui la acest proiect {{strong}}făcând o mică donație{{/strong}}."],"Redirection Support":[null,"Suport pentru Redirecționare"],"Support":[null,"Suport"],"404s":[null,"Erori 404"],"404s from %s":[null,"Erori 404 din %s"],"Log":[null,"Jurnal"],"Delete Redirection":[null,"Șterge Redirecționare"],"Upload":[null,"Încărcare"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,"Aici poți importa redirecționări dintr-un fișier {{code}}.htaccess{{/code}} existent sau dintr-un fișier CSV."],"Import":[null,"Import"],"Update":[null,"Actualizare"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,"Va fi folosit pentru a genera automat un URL dacă niciun URL nu este dat. Poți folosi tagurile speciale {{code}}$dec${{/code}} sau {{code}}$hex${{/code}} pentru a avea un ID unic inserat (fie zecimal ori hex)"],"Auto-generate URL":[null,"URL generat automat"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Un token unic care permite accesul fluxului de cititori la jurnalul RSS de redirecționare (lasă necompletat pentru generare automată)"],"RSS Token":[null,"Token RSS"],"Don't monitor":[null,"Nu monitoriza"],"Monitor changes to posts":[null,"Monitorizează schimbări în articole"],"404 Logs":[null,"Jurnale 404"],"(time to keep logs for)":[null,"(perioadă de păstrare a jurnalelor)"],"Redirect Logs":[null,"Jurnale redirecționare"],"I'm a nice person and I have helped support the author of this plugin":[null,"Sunt o persoană de treabă și am sprijinit autorul acestui modul"],"Plugin support":[null,"Suport modul"],"Options":[null,"Opțiuni"],"Two months":[null,"Două luni"],"A month":[null,"O lună"],"A week":[null,"O săptămână"],"A day":[null,"O zi"],"No logs":[null,"Niciun jurnal"],"Modules":[null,"Extensii"],"Export to CSV":[null,"Exportă în CSV"],"Delete All":[null,"Șterge tot"],"Redirection Log":[null,"Jurnal redirecționare"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Folosește grupuri pentru a-ți organiza redirecționările. Grupurile sunt atribuite unei extensii, care afectează modul în care redirecționările din acel grup funcționează. Dacă nu ești sigur, atunci lipește extensia WordPress."],"Add Group":[null,"Adaugă grup"],"Search":[null,"Caută"],"Groups":[null,"Grupuri"],"Save":[null,"Salvează"],"Group":[null,"Grup"],"Match":[null,"Potrivire"],"Add new redirection":[null,"Adaugă redirecționare nouă"],"Cancel":[null,"Anulare"],"Download":[null,"Descarcă"],"Unable to perform action":[null,"Imposibil de executat acțiunea"],"No items were imported":[null,"Niciun element n-a fost importat"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d redirecționare a fost importată cu succes","%d redirecționări au fost importate cu succes","%d de redirecționări au fost importate cu succes"],"Redirection":[null,"Redirecționare"],"Settings":[null,"Setări"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Redirecționări cu sprijinul WordPress. Nu necesită nicio configurare suplimentară și poți urmări vizitele."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Pentru folosire cu server Nginx. Necesită configurare manuală. Redirecționarea se face fără încărcare WordPress. Nicio urmărire a vizitelor. Aceasta este o extensie experimentală."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,"Folosește fișiere {{code}}.htaccess{{/code}} Apache. Necesită configurare suplimentară. Redirecționarea se face fără încărcarea WordPress. Nicio urmărire a vizitelor."],"Automatically remove or add www to your site.":[null,"Înlătură sau adaugă automat www la situl tău."],"Default server":[null,"Server implicit"],"Canonical URL":[null,"URL canonic"],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress este instalat în: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,"Dacă vrei ca Redirecționarea să-ți actualizeze automat fișierul {{code}}.htaccess{{/code}}, atunci introdu aici calea completă și numele fișierului. De asemenea, poți descărca fișierul și să-l actualizezi manual."],".htaccess Location":[null,"Locație .htaccess"],"Do nothing":[null,"Nu face nimic"],"Error (404)":[null,"Eroare (404)"],"Pass-through":[null,"Trece prin"],"Redirect to random post":[null,"Redirecționează către articol aleatoriu"],"Redirect to URL":[null,"Redirecționează către URL"],"Invalid group when creating redirect":[null,"Grup invalid la crearea redirecționării"],"Configure":[null,"Configurare"],"Show only this IP":[null,"Arată numai acest IP"],"IP":[null,"IP"],"Source URL":[null,"URL sursă"],"Date":[null,"Dată"],"Add Redirect":[null,"Adaugă redirecționare"],"All modules":[null,"Toate extensiile"],"View Redirects":[null,"Vizualizare redirecționări"],"Module":[null,"Extensie"],"Redirects":[null,"Redirecționări"],"Name":[null,"Nume"],"Filter":[null,"Filtru"],"Reset hits":[null,"Resetează vizitele"],"Enable":[null,"Activează"],"Disable":[null,"Dezactivează"],"Delete":[null,"Șterge"],"Edit":[null,"Editare"],"Last Access":[null,"Ultima vizită"],"Hits":[null,"Vizite"],"URL":[null,"URL"],"Type":[null,"Tip"],"Modified Posts":[null,"Articole modificate"],"Redirections":[null,"Redirecționări"],"User Agent":[null,"Agent utilizator"],"URL and user agent":[null,"URL și agent utilizator"],"Target URL":[null,"URL de destinație"],"URL only":[null,"Numai URL"],"Regex":[null,"Expresie uzuală"],"Referrer":[null,"Referent"],"URL and referrer":[null,"URL și referent"],"Logged Out":[null,"Dezautentificat"],"Logged In":[null,"Autentificat"],"URL and login status":[null,"URL și stare autentificare"]}
 
locale/json/redirection-ru_RU.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2016-08-24 17:24:44+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","x-generator":"GlotPress/2.4.0-alpha","language":"ru","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Расширенные параметры"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"Джон Годли"],"Manage all your 301 redirects and monitor 404 errors":[null,"Управляйте всеми 301-перенаправлениями и отслеживайте ошибки 404"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Redirection Support":[null,"Поддержка"],"Support":[null,"Поддержка"],"404s":[null,"404 ошибки"],"404s from %s":[null,"ошибки 404 от %s"],"Log":[null,"Журнал"],"Delete Redirection":[null,"Удалить плагин"],"Upload":[null,"Загрузить"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Импорт"],"Update":[null,"Обновить"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Автоматическая генерация URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"Уникальный токен разрешающий RSS-ридерам доступ к RSS журналу перенаправлений (оставьте пустым для автогенерации)"],"RSS Token":[null,"Токен RSS"],"Don't monitor":[null,"Не отслеживать"],"Monitor changes to posts":[null,"Наблюдать за изменениями в записях"],"404 Logs":[null,"Журналы 404"],"(time to keep logs for)":[null,"(время хранения журналов)"],"Redirect Logs":[null,"Журналы перенаправлений"],"I'm a nice person and I have helped support the author of this plugin":[null,"Я - хороший человек и я поддержал автора данного плагина"],"Plugin support":[null,""],"Options":[null,"Настройки"],"Two months":[null,"Два месяца"],"A month":[null,"Месяц"],"A week":[null,"Неделя"],"A day":[null,"День"],"No logs":[null,"Экспорт в CSV"],"Modules":[null,"Модули"],"Export to CSV":[null,""],"Delete All":[null,"Удалить все"],"Redirection Log":[null,"Журнал перенаправлений"],"optional":[null,"не обязательно"],"Description":[null,"Описание"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Используйте группы для организации редиректов. Группы назначаются модулю, который определяет как будут работать перенаправления в этой группе. Если не уверены - используйте модуль WordPress"],"Add Group":[null,"Добавить группу"],"Search":[null,"Поиск"],"Groups":[null,"Группы"],"Save":[null,"Сохранить"],"Add Redirection":[null,"Добавить перенаправление"],"Group":[null,"Группа"],"Regular expression":[null,"Регулярное выражение"],"Action":[null,"Действие"],"Match":[null,"Совпадение"],"Your redirection has been added.":[null,"Ваше правило перенаправления добавлено."],"Add new redirection":[null,"Добавить новое перенаправление"],"Cancel":[null,"Отмена"],"Download":[null,"Скачать"],"Sorry, but your redirection was not created":[null,"Извините, перенаправление не было создано"],"Unable to perform action":[null,"Невозможно совершить действие"],"No items were imported":[null,"Ничего не импортировано"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d перенаправление было успешно импортировано","%d перенаправления были успешно импортированы",""],"Your options were updated":[null,"Ваши настройки были обновлены"],"Redirection":[null,"Перенаправления"],"Settings":[null,"Настройки"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Редирект через WordPress. Дополнительная конфигурация не требуется и можно отслеживать количество переходов"],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Используется с вебсервером NGINX, требуется ручная конфигурация. Редирект происходит без загрузки WordPress. Количество переходов не отслеживается. Это экспериментальный модуль"],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Автоматически удалять или добавлять WWW к вашему сайту"],"Default server":[null,"Сервер по умолчанию"],"Canonical URL":[null,"Канонические URL"],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,"Расположение .htaccess"],"Do nothing":[null,"Ничего не делать"],"Error (404)":[null,"Ошибка 404"],"Pass-through":[null,"Транзит (pass-through)"],"Redirect to random post":[null,"Перенаправить на случайную запись"],"Redirect to URL":[null,"Перенаправить на URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Непозвожно добавить новое перенаправление, удалите Redirection из страницы настроек и переустановите"],"Invalid source URL when creating redirect for given match type":[null,"Неверный исходный URL при создании перенаправления для заданного типа"],"Invalid group when creating redirect":[null,"Неверная группа при создании перенаправления"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Можно перенаправлять только с относительного URL (<code>%s</code>) для этого домена (<code>%s</code>)."],"Source and target URL must be different":[null,"Исходный и целевой URL должны отличаться"],"Configure":[null,"Настроить"],"Show only this IP":[null,"Показать только этот IP"],"IP":[null,"IP"],"Source URL":[null,"URL источника"],"Date":[null,"Дата"],"Add Redirect":[null,""],"All modules":[null,"Все модули"],"View Redirects":[null,"Посмотреть перенаправления"],"Module":[null,"Модуль"],"Redirects":[null,"Перенаправления"],"Name":[null,"Название"],"Filter":[null,"Фильтр"],"No group filter":[null,"Без группового фильтра"],"Reset Hits":[null,"Обнулить счетчик"],"Enable":[null,"Включено"],"Disable":[null,"Отключено"],"Delete":[null,"Удалить"],"Edit":[null,"Изменить"],"Last Access":[null,"Последний"],"Hits":[null,"Счетчик"],"URL":[null,"URL"],"Type":[null,"Тип"],"Modified Posts":[null,"Измененные записи"],"Redirections":[null,"Перенаправления"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Посетитель будет перенаправлен при совпадении User-Agent. Вы можете определить различные целевые URL при совпадении или не совпадении. Если оставить поле пустым, то посетитель никуда перенаправляться не будет. <strong>Все условия вводятся как регулярные выражения</strong>.\n"],"User Agent":[null,"User-Agent"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL и User-Agent"],"Target URL":[null,"URL назначения"],"URL only":[null,"Только URL"],"Not matched":[null,"Не совпадают"],"Matched":[null,"Совпадают"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Посетитель будет перенапрвлен на URL источника при совпадении реферера. Вы можете определить различные целевые URL при совпадении и не совпадении. Если оставить поле пустым, посетитель никуда перенаправляться не будет."],"HTTP Code":[null,"Код HTTP"],"Regex":[null,"Регулярное выражение"],"Referrer":[null,"Реферер"],"URL and referrer":[null,"URL и реферер"],"Logged Out":[null,"Разлогинен"],"Logged In":[null,"Залогинен"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Будет выбран один из следующих URL-адресов в зависимости от того, войдет пользователь в систему или нет. Если оставить поле пустым - пользователь перенаправляться не будет."],"URL and login status":[null,"URL и статус входа"]}
 
locale/json/redirection-sk_SK.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2016-06-15 09:49:02+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","x-generator":"GlotPress/2.4.0-alpha","language":"sk","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Rozšírené nastavenia"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Spravujte všetky vaše 301 presmerovania a monitorujte 404 chyby"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Redirection Support":[null,""],"Support":[null,"Podpora"],"404s":[null,"404"],"404s from %s":[null,"404 z %s"],"Log":[null,"Záznam"],"Delete Redirection":[null,"Vymazať presmerovanie"],"Upload":[null,"Nahrať"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Import"],"Update":[null,"Aktualizovať"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"Automatické generovanie URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"RSS Token"],"Don't monitor":[null,"Nesledovať"],"Monitor changes to posts":[null,"Sledovať zmeny v článkoch"],"404 Logs":[null,"Zaznamenávanie 404"],"(time to keep logs for)":[null,"(ako dlho uchovávať záznamy)"],"Redirect Logs":[null,"Zaznamenávanie presmerovaní"],"I'm a nice person and I have helped support the author of this plugin":[null,"Som dobrý človek a podporil som autora tohto modulu"],"Plugin support":[null,""],"Options":[null,"Možnosti"],"Two months":[null,"Dva mesiace"],"A month":[null,"Mesiac"],"A week":[null,"Týždeň"],"A day":[null,"Deň"],"No logs":[null,"Žiadne zaznamenávanie"],"Modules":[null,"Moduly"],"Export to CSV":[null,""],"Delete All":[null,"Vymazať všetko"],"Redirection Log":[null,"Záznamy presmerovaní"],"optional":[null,"voliteľné"],"Description":[null,"Popis"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Používajte skupiny na organizovanie presmerovaní. Skupiny sú priradené k modulu, ktorý určuje, ako budú presmerovania v tejto skupine fungovať. Ak si nie ste istí, držte sa WordPress modulu."],"Add Group":[null,"Pridať typ údaju"],"Search":[null,"Hľadať"],"Groups":[null,"Skupiny"],"Save":[null,"Uložiť"],"Add Redirection":[null,"Pridať presmerovanie"],"Group":[null,"Skupina"],"Regular expression":[null,"Regulárny výraz"],"Action":[null,"Akcia"],"Match":[null,"Zhoda"],"Your redirection has been added.":[null,"Vaše presmerovanie bolo pridané."],"Add new redirection":[null,"Pridať nové presmerovanie"],"Cancel":[null,"Zrušiť"],"Download":[null,"Stiahnuť"],"Sorry, but your redirection was not created":[null,"Prepáčte, presmerovanie nebolo vytvorené"],"Unable to perform action":[null,"Nie je možné vykonať akciu"],"No items were imported":[null,"Žiadne položky neboli importované"],"%d redirection was successfully imported":["%d redirections were successfully imported","%d presmerovanie bolo úspešne importované","%d presmerovania boli úspešne importované","%d presmerovaní bolo úspešne importovaných"],"Your options were updated":[null,"Vaše možnosti boli aktualizované"],"Redirection":[null,"Presmerovanie"],"Settings":[null,"Nastavenia"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,"Presmerovania podporované WordPress-om. Nevyžaduje žiadnu ďalšiu konfiguráciu a viete sledovať aj štatistiky."],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,"Pre použitie s Nginx servermi vyžaduje manuálnu konfiguráciu. Presmerovania nastanú bez načítania WordPress-u. Nesleduje štatistiky. Toto je experimentálny modul."],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Automaticky pridať alebo odstrániť www k vašej webovej stránke."],"Default server":[null,""],"Canonical URL":[null,""],"WordPress is installed in: {{code}}%s{{/code}}":[null,""],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess umiestnenie"],"Do nothing":[null,"Nerobiť nič"],"Error (404)":[null,"Chyba (404)"],"Pass-through":[null,""],"Redirect to random post":[null,"Presmerovať na náhodný článok"],"Redirect to URL":[null,"Presmerovať na URL"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,"Nemožno pridať nové presmerovanie - zmažte Presmerovanie zo stránky modulov a preinštalujte"],"Invalid source URL when creating redirect for given match type":[null,"Neplatná zdrojová URL adresa pri vytváraní presmerovania pre daný typ zhody"],"Invalid group when creating redirect":[null,"Neplatná skupina pri vytváraní presmerovania"],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,"Môžete presmerovať len z relatívnych URL adries (<code>%s</code>) na tejto dómene (<code>%s</code>)."],"Source and target URL must be different":[null,"Zdrojová a cieľová URL musia byť odlišné"],"Configure":[null,"Konfigurácia"],"Show only this IP":[null,"Ukázať len túto IP adresu"],"IP":[null,"IP"],"Source URL":[null,"Zdrojová URL"],"Date":[null,"Dátum"],"Add Redirect":[null,""],"All modules":[null,"Všetky moduly"],"View Redirects":[null,"Zobraziť presmerovania"],"Module":[null,"Modul"],"Redirects":[null,"Presmerovania"],"Name":[null,"Názov"],"Filter":[null,"Filtrovať"],"No group filter":[null,"Všetky skupiny"],"Reset Hits":[null,"Resetovať štatistiky"],"Enable":[null,"Povoliť"],"Disable":[null,"Zakázať"],"Delete":[null,"Vymazať"],"Edit":[null,"Upraviť"],"Last Access":[null,"Posledný prístup"],"Hits":[null,"Štatistika"],"URL":[null,"URL"],"Type":[null,"Typ"],"Modified Posts":[null,"Upravené články"],"Redirections":[null,"Presmerovania"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Návštevník bude presmerovaný z URL ak sa zhoduje agent používateľa (user agent). Môžete špecifikovať <em>zhodujúcu sa</em> cieľovú URL ako adresu kam presmerovať návštevníka, ak sa agent používateľa zhoduje. A <em>nezhodujúce sa</em> ak sa nezhoduje. Ak necháte URL prázdne, návštevník nebude presmerovaný. <strong>Všetky zhody sú vyhodnocované ako regulárne výrazy</strong>.\n\n"],"User Agent":[null,"Agent používateľa (user agent)"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL a agent používateľa (user agent)"],"Target URL":[null,"Cieľová URL"],"URL only":[null,"Len URL"],"Not matched":[null,"Nezhodná"],"Matched":[null,"Zhodná"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Návštevník bude presmerovaný zo zdrojovej URL adresy ak sa referrer zhoduje. Môžete špecifikovať <em>zhodnú</em> cieľovú URL adresu ako adresu, kam posielate návštevníkov ak sa údaje zhodujú. Alebo <em>nezhodnú</em> ak sa nezhodujú. Ponechaním prázdneho poľa URL znamená, že návštevník nie je presmerovaný."],"HTTP Code":[null,"HTTP kód"],"Regex":[null,"Regex"],"Referrer":[null,"Referrer"],"URL and referrer":[null,"URL a referrer"],"Logged Out":[null,"Odhlásený"],"Logged In":[null,"Prihlásený"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Cieľová URL bude zvolená z nasledujúcich URL adries na základe toho, či používateľ je prihlásený alebo nie. Ak necháte URL prázdne, používateľ nebude presmerovaný."],"URL and login status":[null,"URL a status prihlásenia"]}
 
locale/json/redirection-sv_SE.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-11-21 12:00:02+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=n != 1;","x-generator":"GlotPress/2.4.0-alpha","language":"sv_SE","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,"https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,"Fullständig dokumentation för Redirection kan hittas på {{site}}https://redirection.me{{/site}}. Om du har problem, vänligen kolla {{faq}}vanliga frågor{{/faq}} först."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,"Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,"Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} &mdash; inkludera så mycket information som du kan!"],"Never cache":[null,"Använd aldrig cache"],"An hour":[null,"En timma"],"Redirect Cache":[null,"Omdirigera cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,"Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"],"Are you sure you want to import from %s?":[null,"Är du säker på att du vill importera från %s?"],"Plugin Importers":[null,"Tilläggsimporterare"],"The following redirect plugins were detected on your site and can be imported from.":[null,"Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."],"total = ":[null,"totalt ="],"Import from %s":[null,"Importera från %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,"Problem upptäcktes med dina databastabeller. Besök <a href=\"%s\"> supportsidan </a> för mer detaljer."],"Redirection not installed properly":[null,"Redirection har inte installerats ordentligt"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,"Redirection kräver WordPress version %1s, du använder version %2s &mdash; vänligen uppdatera WordPress"],"Default WordPress \"old slugs\"":[null,"WordPress standard ”gamla permalänkar”"],"Create associated redirect (added to end of URL)":[null,"Skapa associerad omdirigering (läggs till i slutet på URL:en)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,"<code>Redirectioni10n</code> är inte definierat. Detta betyder vanligtvis att ett annat tillägg blockerar Redirection från att laddas. Vänligen inaktivera alla tillägg och försök igen."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,"Om knappen inte fungerar bör du läsa felmeddelande och se om du kan fixa felet manuellt, annars kan du kolla i avsnittet 'Behöver du hjälp?' längre ner."],"⚡️ Magic fix ⚡️":[null,"⚡️ Magisk fix ⚡️"],"Plugin Status":[null,"Tilläggsstatus"],"Custom":[null,"Anpassad"],"Mobile":[null,"Mobil"],"Feed Readers":[null,"Feedläsare"],"Libraries":[null,"Bibliotek"],"URL Monitor Changes":[null,""],"Save changes to this group":[null,"Spara ändringar till den här gruppen"],"For example \"/amp\"":[null,"Till exempel ”/amp”"],"URL Monitor":[null,""],"Monitor changes to pages":[null,""],"Monitor trashed items (will create disabled redirects)":[null,""],"Delete 404s":[null,""],"Delete all logs for this 404":[null,""],"Delete all from IP %s":[null,"Ta bort allt från IP-numret %s"],"Delete all matching \"%s\"":[null,"Ta bort allt som matchar \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,""],"Also check if your browser is able to load <code>redirection.js</code>:":[null,""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,""],"Unable to load Redirection":[null,""],"Unable to create group":[null,"Det gick inte att skapa grupp"],"Failed to fix database tables":[null,""],"Post monitor group is valid":[null,""],"Post monitor group is invalid":[null,""],"Post monitor group":[null,""],"All redirects have a valid group":[null,""],"Redirects with invalid groups detected":[null,""],"Valid redirect group":[null,""],"Valid groups detected":[null,""],"No valid groups, so you will not be able to create any redirects":[null,""],"Valid groups":[null,"Giltiga grupper"],"Database tables":[null,""],"The following tables are missing:":[null,"Följande tabeller saknas:"],"All tables present":[null,""],"Cached Redirection detected":[null,"En cachad version av Redirection upptäcktes"],"Please clear your browser cache and reload this page.":[null,"Vänligen rensa din webbläsares cache och ladda om denna sida."],"The data on this page has expired, please reload.":[null,"Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,"WordPress returnerade inte ett svar. Det kan innebära att ett fel inträffade eller att begäran blockerades. Vänligen kontrollera din servers error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,"Din server svarade med ett '403 Förbjudet'-fel som kan indikera att begäran blockerades. Använder du en brandvägg eller ett säkerhetsprogram?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,"WordPress svarade med ett oväntat meddelande. Detta indikerar vanligtvis att ett tillägg eller tema skickat ut data när det inte borde gör det. Försök att inaktivera andra tillägg och försök igen."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,"Om problemet är okänt försök avaktivera andra tillägg - det är lätt att göra, och du kan snabbt aktivera dem igen. Andra tillägg kan ibland orsaka konflikter."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,"Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."],"If you think Redirection is at fault then create an issue.":[null,"Om du tror att Redirection orsakar felet, skapa en felrapport."],"This may be caused by another plugin - look at your browser's error console for more details.":[null,"Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "],"Loading, please wait...":[null,"Laddar, vänligen vänta..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,"{{strong}}CSV filformat{{/strong}}: {{code}}Käll-URL, Mål-URL{{/code}} - som valfritt kan följas av {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 för nej, 1 för ja)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,"Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,"Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,"Om detta är ett nytt problem, vänligen {{strong}}skapa en ny felrapport{{/strong}} eller skicka rapporten via {{strong}}e-post{{/strong}}. Bifoga en beskrivning av det du försökte göra inklusive de viktiga detaljerna listade nedanför. Vänligen bifoga också en skärmavbild. "],"Create Issue":[null,"Skapa felrapport"],"Email":[null,"E-post"],"Important details":[null,"Viktiga detaljer"],"Need help?":[null,"Behöver du hjälp?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,"Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."],"Pos":[null,"Pos"],"410 - Gone":[null,"410 - Borttagen"],"Position":[null,"Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,"Används för att automatiskt generera en URL om ingen URL anges. Använd specialkoderna {{code}}$dec${{/code}} eller {{code}}$hex${{/code}} för att infoga ett unikt ID"],"Apache Module":[null,"Apache-modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,"Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."],"Import to group":[null,"Importera till grupp"],"Import a CSV, .htaccess, or JSON file.":[null,"Importera en CSV-fil, .htaccess-fil eller JSON-fil."],"Click 'Add File' or drag and drop here.":[null,"Klicka på 'Lägg till fil' eller dra och släpp en fil här."],"Add File":[null,"Lägg till fil"],"File selected":[null,"Fil vald"],"Importing":[null,"Importerar"],"Finished importing":[null,"Importering klar"],"Total redirects imported:":[null,"Antal omdirigeringar importerade:"],"Double-check the file is the correct format!":[null,"Dubbelkolla att filen är i rätt format!"],"OK":[null,"OK"],"Close":[null,"Stäng"],"All imports will be appended to the current database.":[null,"All importerade omdirigeringar kommer infogas till den aktuella databasen."],"Export":[null,"Exportera"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,"Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."],"Everything":[null,"Allt"],"WordPress redirects":[null,"WordPress omdirigeringar"],"Apache redirects":[null,"Apache omdirigeringar"],"Nginx redirects":[null,"Nginx omdirigeringar"],"CSV":[null,"CSV"],"Apache .htaccess":[null,"Apache .htaccess"],"Nginx rewrite rules":[null,"Nginx omskrivningsregler"],"Redirection JSON":[null,"JSON omdirigeringar"],"View":[null,"Visa"],"Log files can be exported from the log pages.":[null,"Loggfiler kan exporteras från loggsidorna."],"Import/Export":[null,"Importera/Exportera"],"Logs":[null,"Loggar"],"404 errors":[null,"404-fel"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,"Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"],"I'd like to support some more.":[null,"Jag skulle vilja stödja lite till."],"Support 💰":[null,"Support 💰"],"Redirection saved":[null,"Omdirigering sparad"],"Log deleted":[null,"Logginlägg raderades"],"Settings saved":[null,"Inställning sparad"],"Group saved":[null,"Grupp sparad"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?","Är du säker på att du vill radera detta objekt?","Är du säker på att du vill radera dessa objekt?"],"pass":[null,""],"All groups":[null,"Alla grupper"],"301 - Moved Permanently":[null,"301 - Flyttad permanent"],"302 - Found":[null,"302 - Hittad"],"307 - Temporary Redirect":[null,"307 - Tillfällig omdirigering"],"308 - Permanent Redirect":[null,"308 - Permanent omdirigering"],"401 - Unauthorized":[null,"401 - Obehörig"],"404 - Not Found":[null,"404 - Hittades inte"],"Title":[null,"Titel"],"When matched":[null,"När matchning sker"],"with HTTP code":[null,"med HTTP-kod"],"Show advanced options":[null,"Visa avancerande alternativ"],"Matched Target":[null,"Matchande mål"],"Unmatched Target":[null,"Ej matchande mål"],"Saving...":[null,"Sparar..."],"View notice":[null,"Visa meddelande"],"Invalid source URL":[null,"Ogiltig URL-källa"],"Invalid redirect action":[null,"Ogiltig omdirigeringsåtgärd"],"Invalid redirect matcher":[null,"Ogiltig omdirigeringsmatchning"],"Unable to add new redirect":[null,"Det går inte att lägga till en ny omdirigering"],"Something went wrong 🙁":[null,"Något gick fel 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,"Jag försökte göra något, och sen gick det fel. Det kan vara ett tillfälligt problem och om du försöker igen kan det fungera."],"It didn't work when I tried again":[null,"Det fungerade inte när jag försökte igen"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,"Se om ditt problem finns beskrivet på listan över kända {{link}}problem med Redirection{{/link}}. Lägg gärna till fler detaljer om du hittar samma problem."],"Log entries (%d max)":[null,"Antal logginlägg per sida (max %d)"],"Search by IP":[null,"Sök via IP"],"Select bulk action":[null,"Välj massåtgärd"],"Bulk Actions":[null,"Massåtgärd"],"Apply":[null,"Tillämpa"],"First page":[null,"Första sidan"],"Prev page":[null,"Föregående sida"],"Current Page":[null,"Aktuell sida"],"of %(page)s":[null,"av %(sidor)"],"Next page":[null,"Nästa sida"],"Last page":[null,"Sista sidan"],"%s item":["%s items","%s objekt","%s objekt"],"Select All":[null,"Välj allt"],"Sorry, something went wrong loading the data - please try again":[null,"Något gick fel när data laddades - Vänligen försök igen"],"No results":[null,"Inga resultat"],"Delete the logs - are you sure?":[null,"Är du säker på att du vill radera loggarna?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,"När du har raderat dina nuvarande loggar kommer de inte längre att vara tillgängliga. Om du vill, kan du ställa in ett automatiskt raderingsschema på Redirections alternativ-sida."],"Yes! Delete the logs":[null,"Ja! Radera loggarna"],"No! Don't delete the logs":[null,"Nej! Radera inte loggarna"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,"Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."],"Newsletter":[null,"Nyhetsbrev"],"Want to keep up to date with changes to Redirection?":[null,"Vill du bli uppdaterad om ändringar i Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,"Anmäl dig till Redirection-nyhetsbrevet - ett litet nyhetsbrev om nya funktioner och ändringar i tillägget. Det är perfekt om du vill testa kommande förändringar i betaversioner innan en skarp version släpps publikt."],"Your email address:":[null,"Din e-postadress:"],"You've supported this plugin - thank you!":[null,"Du har stöttat detta tillägg - tack!"],"You get useful software and I get to carry on making it better.":[null,"Du får en användbar mjukvara och jag kan fortsätta göra den bättre."],"Forever":[null,"För evigt"],"Delete the plugin - are you sure?":[null,"Radera tillägget - är du verkligen säker på det?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,"Tar du bort tillägget tar du även bort alla omdirigeringar, loggar och inställningar. Gör detta om du vill ta bort tillägget helt och hållet, eller om du vill återställa tillägget."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,"När du har tagit bort tillägget kommer dina omdirigeringar att sluta fungera. Om de verkar fortsätta att fungera, vänligen rensa din webbläsares cache."],"Yes! Delete the plugin":[null,"Ja! Radera detta tillägg"],"No! Don't delete the plugin":[null,"Nej! Radera inte detta tillägg"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Hantera alla dina 301-omdirigeringar och övervaka 404-fel"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,"Redirection är gratis att använda - livet är underbart och ljuvligt! Det har krävts mycket tid och ansträngningar för att utveckla tillägget och du kan hjälpa till med att stödja denna utveckling genom att {{strong}} göra en liten donation {{/ strong}}."],"Support":[null,"Support"],"404s":[null,"404:or"],"Log":[null,"Logg"],"Delete Redirection":[null,"Ta bort Redirection"],"Upload":[null,"Ladda upp"],"Import":[null,"Importera"],"Update":[null,"Uppdatera"],"Auto-generate URL":[null,"Autogenerera URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,"En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"],"RSS Token":[null,"RSS-nyckel"],"Monitor changes to posts":[null,"Övervaka ändringar av inlägg"],"404 Logs":[null,"404-loggar"],"(time to keep logs for)":[null,"(hur länge loggar ska sparas)"],"Redirect Logs":[null,"Redirection-loggar"],"I'm a nice person and I have helped support the author of this plugin":[null,"Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"],"Plugin Support":[null,"Support för tillägg"],"Options":[null,"Alternativ"],"Two months":[null,"Två månader"],"A month":[null,"En månad"],"A week":[null,"En vecka"],"A day":[null,"En dag"],"No logs":[null,"Inga loggar"],"Delete All":[null,"Radera alla"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,"Använd grupper för att organisera dina omdirigeringar. Grupper tillämpas på en modul, vilken påverkar hur omdirigeringar i den gruppen funkar. Behåll bara WordPress-modulen om du känner dig osäker."],"Add Group":[null,"Lägg till grupp"],"Search":[null,"Sök"],"Groups":[null,"Grupper"],"Save":[null,"Spara"],"Group":[null,"Grupp"],"Match":[null,"Matcha"],"Add new redirection":[null,"Lägg till ny omdirigering"],"Cancel":[null,"Avbryt"],"Download":[null,"Hämta"],"Redirection":[null,"Redirection"],"Settings":[null,"Inställningar"],"Do nothing":[null,"Gör ingenting"],"Error (404)":[null,"Fel (404)"],"Pass-through":[null,"Passera"],"Redirect to random post":[null,"Omdirigering till slumpmässigt inlägg"],"Redirect to URL":[null,"Omdirigera till URL"],"Invalid group when creating redirect":[null,"Gruppen är ogiltig när omdirigering skapas"],"Show only this IP":[null,"Visa enbart detta IP-nummer"],"IP":[null,"IP"],"Source URL":[null,"URL-källa"],"Date":[null,"Datum"],"Add Redirect":[null,"Lägg till omdirigering"],"All modules":[null,"Alla moduler"],"View Redirects":[null,"Visa omdirigeringar"],"Module":[null,"Modul"],"Redirects":[null,"Omdirigering"],"Name":[null,"Namn"],"Filter":[null,"Filtrera"],"Reset hits":[null,"Nollställ träffar"],"Enable":[null,"Aktivera"],"Disable":[null,"Inaktivera"],"Delete":[null,"Radera"],"Edit":[null,"Redigera"],"Last Access":[null,"Senast använd"],"Hits":[null,"Träffar"],"URL":[null,"URL"],"Type":[null,"Typ"],"Modified Posts":[null,"Modifierade inlägg"],"Redirections":[null,"Omdirigeringar"],"User Agent":[null,"Användaragent"],"URL and user agent":[null,"URL och användaragent"],"Target URL":[null,"Mål-URL"],"URL only":[null,"Endast URL"],"Regex":[null,"Reguljärt uttryck"],"Referrer":[null,"Hänvisningsadress"],"URL and referrer":[null,"URL och hänvisande webbplats"],"Logged Out":[null,"Utloggad"],"Logged In":[null,"Inloggad"],"URL and login status":[null,"URL och inloggnings-status"]}
1
+ {"":[],"https://redirection.me/":["https://redirection.me/"],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":["Fullständig dokumentation för Redirection kan hittas på {{site}}https://redirection.me{{/site}}. Om du har problem, vänligen kolla {{faq}}vanliga frågor{{/faq}} först."],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":["Om du vill rapportera en bugg, vänligen läs guiden {{report}}rapportera buggar{{/report}}."],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":["Om du vill skicka information som du inte vill ska synas publikt, så kan du skicka det direkt via {{email}}e-post{{/email}} &mdash; inkludera så mycket information som du kan!"],"Never cache":["Använd aldrig cache"],"An hour":["En timma"],"Redirect Cache":["Omdirigera cache"],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":["Hur länge omdirigerade 301-URL:er ska cachas (via HTTP-sidhuvudet ”Expires”)"],"Are you sure you want to import from %s?":["Är du säker på att du vill importera från %s?"],"Plugin Importers":["Tilläggsimporterare"],"The following redirect plugins were detected on your site and can be imported from.":["Följande omdirigeringstillägg hittades på din webbplats och kan importeras från."],"total = ":["totalt ="],"Import from %s":["Importera från %s"],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":["Problem upptäcktes med dina databastabeller. Besök <a href=\"%s\"> supportsidan </a> för mer detaljer."],"Redirection not installed properly":["Redirection har inte installerats ordentligt"],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":["Redirection kräver WordPress version %1s, du använder version %2s &mdash; vänligen uppdatera WordPress"],"Default WordPress \"old slugs\"":["WordPress standard ”gamla permalänkar”"],"Create associated redirect (added to end of URL)":["Skapa associerad omdirigering (läggs till i slutet på URL:en)"],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":["<code>Redirectioni10n</code> är inte definierat. Detta betyder vanligtvis att ett annat tillägg blockerar Redirection från att laddas. Vänligen inaktivera alla tillägg och försök igen."],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":["Om knappen inte fungerar bör du läsa felmeddelande och se om du kan fixa felet manuellt, annars kan du kolla i avsnittet 'Behöver du hjälp?' längre ner."],"⚡️ Magic fix ⚡️":["⚡️ Magisk fix ⚡️"],"Plugin Status":["Tilläggsstatus"],"Custom":["Anpassad"],"Mobile":["Mobil"],"Feed Readers":["Feedläsare"],"Libraries":["Bibliotek"],"URL Monitor Changes":["Övervaka URL-ändringar"],"Save changes to this group":["Spara ändringar till den här gruppen"],"For example \"/amp\"":["Till exempel ”/amp”"],"URL Monitor":["URL-övervakning"],"Monitor changes to pages":["Övervaka ändringar på sidor"],"Monitor trashed items (will create disabled redirects)":["Övervaka raderade objekt (kommer att skapa inaktiverade omdirigeringar)"],"Delete 404s":["Radera 404:or"],"Delete all logs for this 404":["Radera alla loggar för denna 404"],"Delete all from IP %s":["Ta bort allt från IP-numret %s"],"Delete all matching \"%s\"":["Ta bort allt som matchar \"%s\""],"Your server has rejected the request for being too big. You will need to change it to continue.":["Din server har nekat begäran för att den var för stor. Du måste ändra den innan du fortsätter."],"Also check if your browser is able to load <code>redirection.js</code>:":["Kontrollera också att din webbläsare kan ladda <code>redirection.js</code>:"],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":["Om du använder ett tillägg eller en tjänst för att cacha sidor (CloudFlare, OVH m.m.) så kan du också prova att rensa den cachen."],"Unable to load Redirection":["Det gick inte att ladda Redirection"],"Unable to create group":["Det gick inte att skapa grupp"],"Failed to fix database tables":["Det gick inte att korrigera databastabellerna"],"Post monitor group is valid":["Övervakningsgrupp för inlägg är giltig"],"Post monitor group is invalid":["Övervakningsgrupp för inlägg är ogiltig"],"Post monitor group":["Övervakningsgrupp för inlägg"],"All redirects have a valid group":["Alla omdirigeringar har en giltig grupp"],"Redirects with invalid groups detected":["Omdirigeringar med ogiltiga grupper upptäcktes"],"Valid redirect group":["Giltig omdirigeringsgrupp"],"Valid groups detected":["Giltiga grupper upptäcktes"],"No valid groups, so you will not be able to create any redirects":["Inga giltiga grupper, du kan inte skapa nya omdirigeringar"],"Valid groups":["Giltiga grupper"],"Database tables":["Databastabeller"],"The following tables are missing:":["Följande tabeller saknas:"],"All tables present":["Alla tabeller närvarande"],"Cached Redirection detected":["En cachad version av Redirection upptäcktes"],"Please clear your browser cache and reload this page.":["Vänligen rensa din webbläsares cache och ladda om denna sida."],"The data on this page has expired, please reload.":["Datan på denna sida är inte längre aktuell, vänligen ladda om sidan."],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":["WordPress returnerade inte ett svar. Det kan innebära att ett fel inträffade eller att begäran blockerades. Vänligen kontrollera din servers error_log."],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":["Din server svarade med ett '403 Förbjudet'-fel som kan indikera att begäran blockerades. Använder du en brandvägg eller ett säkerhetsprogram?"],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":["WordPress svarade med ett oväntat meddelande. Detta indikerar vanligtvis att ett tillägg eller tema skickat ut data när det inte borde gör det. Försök att inaktivera andra tillägg och försök igen."],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":["Om problemet är okänt försök avaktivera andra tillägg - det är lätt att göra, och du kan snabbt aktivera dem igen. Andra tillägg kan ibland orsaka konflikter."],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":["Inkludera dessa detaljer i din rapport {{strong}}tillsammans med en beskrivning av vad du gjorde{{/strong}}."],"If you think Redirection is at fault then create an issue.":["Om du tror att Redirection orsakar felet, skapa en felrapport."],"This may be caused by another plugin - look at your browser's error console for more details.":["Detta kan ha orsakats av ett annat tillägg - kolla i din webbläsares fel-konsol för mer information. "],"Loading, please wait...":["Laddar, vänligen vänta..."],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":["{{strong}}CSV filformat{{/strong}}: {{code}}Käll-URL, Mål-URL{{/code}} - som valfritt kan följas av {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 för nej, 1 för ja)."],"Redirection is not working. Try clearing your browser cache and reloading this page.":["Redirection fungerar inte. Prova att rensa din webbläsares cache och ladda om den här sidan."],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":["Om det inte hjälper, öppna din webbläsares fel-konsol och skapa en {{link}}ny felrapport{{/link}} med informationen."],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":["Om detta är ett nytt problem, vänligen {{strong}}skapa en ny felrapport{{/strong}} eller skicka rapporten via {{strong}}e-post{{/strong}}. Bifoga en beskrivning av det du försökte göra inklusive de viktiga detaljerna listade nedanför. Vänligen bifoga också en skärmavbild. "],"Create Issue":["Skapa felrapport"],"Email":["E-post"],"Important details":["Viktiga detaljer"],"Need help?":["Behöver du hjälp?"],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":["Observera att eventuell support tillhandahålls vart efter tid finns och hjälp kan inte garanteras. Jag ger inte betald support."],"Pos":["Pos"],"410 - Gone":["410 - Borttagen"],"Position":["Position"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":["Används för att automatiskt generera en URL om ingen URL anges. Använd specialkoderna {{code}}$dec${{/code}} eller {{code}}$hex${{/code}} för att infoga ett unikt ID"],"Apache Module":["Apache-modul"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":["Om du vill att Redirection automatiskt ska uppdatera din {{code}}.htaccess{{/code}}, fyll då i hela sökvägen inklusive filnamn."],"Import to group":["Importera till grupp"],"Import a CSV, .htaccess, or JSON file.":["Importera en CSV-fil, .htaccess-fil eller JSON-fil."],"Click 'Add File' or drag and drop here.":["Klicka på 'Lägg till fil' eller dra och släpp en fil här."],"Add File":["Lägg till fil"],"File selected":["Fil vald"],"Importing":["Importerar"],"Finished importing":["Importering klar"],"Total redirects imported:":["Antal omdirigeringar importerade:"],"Double-check the file is the correct format!":["Dubbelkolla att filen är i rätt format!"],"OK":["OK"],"Close":["Stäng"],"All imports will be appended to the current database.":["All importerade omdirigeringar kommer infogas till den aktuella databasen."],"Export":["Exportera"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":["Exportera till CSV, Apache .htaccess, Nginx, eller JSON omdirigeringar (som innehåller alla omdirigeringar och grupper)."],"Everything":["Allt"],"WordPress redirects":["WordPress omdirigeringar"],"Apache redirects":["Apache omdirigeringar"],"Nginx redirects":["Nginx omdirigeringar"],"CSV":["CSV"],"Apache .htaccess":["Apache .htaccess"],"Nginx rewrite rules":["Nginx omskrivningsregler"],"Redirection JSON":["JSON omdirigeringar"],"View":["Visa"],"Log files can be exported from the log pages.":["Loggfiler kan exporteras från loggsidorna."],"Import/Export":["Importera/Exportera"],"Logs":["Loggar"],"404 errors":["404-fel"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":["Vänligen nämn {{code}}%s{{/code}} och förklara vad du gjorde vid tidpunkten"],"I'd like to support some more.":["Jag skulle vilja stödja lite till."],"Support 💰":["Support 💰"],"Redirection saved":["Omdirigering sparad"],"Log deleted":["Logginlägg raderades"],"Settings saved":["Inställning sparad"],"Group saved":["Grupp sparad"],"Are you sure you want to delete this item?":["Är du säker på att du vill radera detta objekt?","Är du säker på att du vill radera dessa objekt?"],"pass":["lösen"],"All groups":["Alla grupper"],"301 - Moved Permanently":["301 - Flyttad permanent"],"302 - Found":["302 - Hittad"],"307 - Temporary Redirect":["307 - Tillfällig omdirigering"],"308 - Permanent Redirect":["308 - Permanent omdirigering"],"401 - Unauthorized":["401 - Obehörig"],"404 - Not Found":["404 - Hittades inte"],"Title":["Titel"],"When matched":["När matchning sker"],"with HTTP code":["med HTTP-kod"],"Show advanced options":["Visa avancerande alternativ"],"Matched Target":["Matchande mål"],"Unmatched Target":["Ej matchande mål"],"Saving...":["Sparar..."],"View notice":["Visa meddelande"],"Invalid source URL":["Ogiltig URL-källa"],"Invalid redirect action":["Ogiltig omdirigeringsåtgärd"],"Invalid redirect matcher":["Ogiltig omdirigeringsmatchning"],"Unable to add new redirect":["Det går inte att lägga till en ny omdirigering"],"Something went wrong 🙁":["Något gick fel 🙁"],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":["Jag försökte göra något, och sen gick det fel. Det kan vara ett tillfälligt problem och om du försöker igen kan det fungera."],"It didn't work when I tried again":["Det fungerade inte när jag försökte igen"],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":["Se om ditt problem finns beskrivet på listan över kända {{link}}problem med Redirection{{/link}}. Lägg gärna till fler detaljer om du hittar samma problem."],"Log entries (%d max)":["Antal logginlägg per sida (max %d)"],"Search by IP":["Sök via IP"],"Select bulk action":["Välj massåtgärd"],"Bulk Actions":["Massåtgärd"],"Apply":["Tillämpa"],"First page":["Första sidan"],"Prev page":["Föregående sida"],"Current Page":["Aktuell sida"],"of %(page)s":["av %(sidor)"],"Next page":["Nästa sida"],"Last page":["Sista sidan"],"%s item":["%s objekt","%s objekt"],"Select All":["Välj allt"],"Sorry, something went wrong loading the data - please try again":["Något gick fel när data laddades - Vänligen försök igen"],"No results":["Inga resultat"],"Delete the logs - are you sure?":["Är du säker på att du vill radera loggarna?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":["När du har raderat dina nuvarande loggar kommer de inte längre att vara tillgängliga. Om du vill, kan du ställa in ett automatiskt raderingsschema på Redirections alternativ-sida."],"Yes! Delete the logs":["Ja! Radera loggarna"],"No! Don't delete the logs":["Nej! Radera inte loggarna"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":["Tack för att du prenumererar! {{a}}Klicka här{{/a}} om du behöver gå tillbaka till din prenumeration."],"Newsletter":["Nyhetsbrev"],"Want to keep up to date with changes to Redirection?":["Vill du bli uppdaterad om ändringar i Redirection?"],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":["Anmäl dig till Redirection-nyhetsbrevet - ett litet nyhetsbrev om nya funktioner och ändringar i tillägget. Det är perfekt om du vill testa kommande förändringar i betaversioner innan en skarp version släpps publikt."],"Your email address:":["Din e-postadress:"],"You've supported this plugin - thank you!":["Du har stöttat detta tillägg - tack!"],"You get useful software and I get to carry on making it better.":["Du får en användbar mjukvara och jag kan fortsätta göra den bättre."],"Forever":["För evigt"],"Delete the plugin - are you sure?":["Radera tillägget - är du verkligen säker på det?"],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":["Tar du bort tillägget tar du även bort alla omdirigeringar, loggar och inställningar. Gör detta om du vill ta bort tillägget helt och hållet, eller om du vill återställa tillägget."],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":["När du har tagit bort tillägget kommer dina omdirigeringar att sluta fungera. Om de verkar fortsätta att fungera, vänligen rensa din webbläsares cache."],"Yes! Delete the plugin":["Ja! Radera detta tillägg"],"No! Don't delete the plugin":["Nej! Radera inte detta tillägg"],"http://urbangiraffe.com":["http://urbangiraffe.com"],"John Godley":["John Godley"],"Manage all your 301 redirects and monitor 404 errors":["Hantera alla dina 301-omdirigeringar och övervaka 404-fel"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":["Redirection är gratis att använda - livet är underbart och ljuvligt! Det har krävts mycket tid och ansträngningar för att utveckla tillägget och du kan hjälpa till med att stödja denna utveckling genom att {{strong}} göra en liten donation {{/ strong}}."],"Support":["Support"],"404s":["404:or"],"Log":["Logg"],"Delete Redirection":["Ta bort Redirection"],"Upload":["Ladda upp"],"Import":["Importera"],"Update":["Uppdatera"],"Auto-generate URL":["Autogenerera URL"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":["En unik nyckel som ger feed-läsare åtkomst till Redirection logg via RSS (lämna tomt för att autogenerera)"],"RSS Token":["RSS-nyckel"],"Monitor changes to posts":["Övervaka ändringar av inlägg"],"404 Logs":["404-loggar"],"(time to keep logs for)":["(hur länge loggar ska sparas)"],"Redirect Logs":["Redirection-loggar"],"I'm a nice person and I have helped support the author of this plugin":["Jag är en trevlig person och jag har hjälpt till att stödja skaparen av detta tillägg"],"Plugin Support":["Support för tillägg"],"Options":["Alternativ"],"Two months":["Två månader"],"A month":["En månad"],"A week":["En vecka"],"A day":["En dag"],"No logs":["Inga loggar"],"Delete All":["Radera alla"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":["Använd grupper för att organisera dina omdirigeringar. Grupper tillämpas på en modul, vilken påverkar hur omdirigeringar i den gruppen funkar. Behåll bara WordPress-modulen om du känner dig osäker."],"Add Group":["Lägg till grupp"],"Search":["Sök"],"Groups":["Grupper"],"Save":["Spara"],"Group":["Grupp"],"Match":["Matcha"],"Add new redirection":["Lägg till ny omdirigering"],"Cancel":["Avbryt"],"Download":["Hämta"],"Redirection":["Redirection"],"Settings":["Inställningar"],"Do nothing":["Gör ingenting"],"Error (404)":["Fel (404)"],"Pass-through":["Passera"],"Redirect to random post":["Omdirigering till slumpmässigt inlägg"],"Redirect to URL":["Omdirigera till URL"],"Invalid group when creating redirect":["Gruppen är ogiltig när omdirigering skapas"],"Show only this IP":["Visa enbart detta IP-nummer"],"IP":["IP"],"Source URL":["URL-källa"],"Date":["Datum"],"Add Redirect":["Lägg till omdirigering"],"All modules":["Alla moduler"],"View Redirects":["Visa omdirigeringar"],"Module":["Modul"],"Redirects":["Omdirigering"],"Name":["Namn"],"Filter":["Filtrera"],"Reset hits":["Nollställ träffar"],"Enable":["Aktivera"],"Disable":["Inaktivera"],"Delete":["Radera"],"Edit":["Redigera"],"Last Access":["Senast använd"],"Hits":["Träffar"],"URL":["URL"],"Type":["Typ"],"Modified Posts":["Modifierade inlägg"],"Redirections":["Omdirigeringar"],"User Agent":["Användaragent"],"URL and user agent":["URL och användaragent"],"Target URL":["Mål-URL"],"URL only":["Endast URL"],"Regex":["Reguljärt uttryck"],"Referrer":["Hänvisningsadress"],"URL and referrer":["URL och hänvisande webbplats"],"Logged Out":["Utloggad"],"Logged In":["Inloggad"],"URL and login status":["URL och inloggnings-status"]}
locale/json/redirection-tr_TR.json DELETED
@@ -1 +0,0 @@
1
- {"":{"po-revision-date":"2017-02-21 12:07:48+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=2; plural=(n > 1);","x-generator":"GlotPress/2.4.0-alpha","language":"tr","project-id-version":"Plugins - Redirection - Stable (latest release)"},"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot.":[null,""],"If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better.":[null,""],"Important details for the thing you just did":[null,""],"Please include these details in your report":[null,""],"Log entries (100 max)":[null,""],"Failed to load":[null,""],"Remove WWW":[null,""],"Add WWW":[null,""],"Search by IP":[null,""],"Select bulk action":[null,""],"Bulk Actions":[null,""],"Apply":[null,""],"First page":[null,""],"Prev page":[null,""],"Current Page":[null,""],"of %(page)s":[null,""],"Next page":[null,""],"Last page":[null,""],"%s item":["%s items","",""],"Select All":[null,""],"Sorry but something went wrong loading the data - please try again":[null,""],"No results":[null,""],"Delete the logs - are you sure?":[null,""],"Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,""],"No! Don't delete the logs":[null,""],"Redirection 404":[null,""],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"I deleted a redirection, why is it still redirecting?":[null,""],"Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}.":[null,""],"Can I open a redirect in a new tab?":[null,""],"It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link.":[null,""],"Something isn't working!":[null,""],"Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it.":[null,""],"Frequently Asked Questions":[null,""],"Need some help? Maybe one of these questions will provide an answer":[null,""],"You've already supported this plugin - thank you!":[null,""],"I'd like to donate some more":[null,""],"You get some useful software and I get to carry on making it better.":[null,""],"Please note I do not provide support and this is just a donation.":[null,""],"Yes I'd like to donate":[null,""],"Thank you for making a donation!":[null,""],"Forever":[null,""],"Failed to save data":[null,""],"Failed to load data":[null,""],"CSV Format":[null,""],"Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]":[null,""],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"Advanced Settings":[null,"Genel Ayarlar"],"http://urbangiraffe.com":[null,"http://urbangiraffe.com"],"John Godley":[null,"John Godley"],"Manage all your 301 redirects and monitor 404 errors":[null,"Tüm 301 yönlendirmelerinizi yönetin ve 404 hatalarını görüntüleyin"],"http://urbangiraffe.com/plugins/redirection/":[null,"http://urbangiraffe.com/plugins/redirection/"],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Redirection Support":[null,"Redirection Destek"],"Support":[null,"Destek"],"404s":[null,"404'ler"],"404s from %s":[null,""],"Log":[null,"Kayıtlar"],"Delete Redirection":[null,"Yönlendirmeyi sil"],"Upload":[null,"Yükle"],"Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file.":[null,""],"Import":[null,"Aktar"],"Update":[null,"Güncelle"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)":[null,""],"Auto-generate URL":[null,"URL'yi otomatik oluştur"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"Alınan RSS"],"Don't monitor":[null,"URL Takip etme"],"Monitor changes to posts":[null,""],"404 Logs":[null,""],"(time to keep logs for)":[null,""],"Redirect Logs":[null,""],"I'm a nice person and I have helped support the author of this plugin":[null,"Ben iyi birisiyim ve bu eklentiyi yazan kişiyi desteklemeliyim."],"Plugin support":[null,"Eklenti desteği"],"Options":[null,"Ayarlar"],"Two months":[null,"İki ay"],"A month":[null,"Bir ay"],"A week":[null,"Bir hafta"],"A day":[null,"Bir gün"],"No logs":[null,""],"Modules":[null,"Modüller"],"Export to CSV":[null,"CSV'ye aktar"],"Delete All":[null,"Hepsini sil"],"Redirection Log":[null,"Yönlendirme Kayıtları"],"optional":[null,"Opsiyonal"],"Description":[null,"Açıklama"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,""],"Add Group":[null,"Yeni Grup Ekle"],"Search":[null,"Ara"],"Groups":[null,"Gruplar"],"Save":[null,"Kaydet"],"Add Redirection":[null,"Yönlendirme Ekle"],"Group":[null,"Grup"],"Regular expression":[null,"Düzenli İfadeler"],"Action":[null,"İşlem"],"Match":[null,"Karşılaştır"],"Your redirection has been added.":[null,"Yeni yönlendirmeniz eklenmiştir."],"Add new redirection":[null,"Yeni yönlendirme ekle"],"Cancel":[null,"İptal"],"Download":[null,"İndir"],"Sorry, but your redirection was not created":[null,"Üzgünüm, yönlendirileceğiniz alan oluşturulmamıştır."],"Unable to perform action":[null,""],"No items were imported":[null,"Hiçbir eleman içeri aktarılmadı"],"%d redirection was successfully imported":["%d redirections were successfully imported","",""],"Your options were updated":[null,"Ayarlarınız güncellendi"],"Redirection":[null,"Redirection"],"Settings":[null,"Ayarlar"],"WordPress-powered redirects. This requires no further configuration, and you can track hits.":[null,""],"For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module.":[null,""],"Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits.":[null,""],"Automatically remove or add www to your site.":[null,"Siteye otomatik olarak www ekle ya da kaldır."],"Default server":[null,"Varsayılan sunucu"],"Canonical URL":[null,""],"WordPress is installed in: {{code}}%s{{/code}}":[null,"WordPress yüklendi: {{code}}%s{{/code}}"],"If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually.":[null,""],".htaccess Location":[null,".htaccess konumu"],"Do nothing":[null,"Hiçbir şey yapma"],"Error (404)":[null,"Hata (404)"],"Pass-through":[null,"Doğrudan"],"Redirect to random post":[null,"Rastgele bir yazıya yönlendir"],"Redirect to URL":[null,"URL'ye Yönlendir"],"Unable to add new redirect - delete Redirection from the options page and re-install":[null,""],"Invalid source URL when creating redirect for given match type":[null,""],"Invalid group when creating redirect":[null,""],"You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>).":[null,""],"Source and target URL must be different":[null,"Kaynak ve hedef URL farklı olmalıdır"],"Configure":[null,""],"Show only this IP":[null,"Sadece bu IP'yi göster"],"IP":[null,"IP"],"Source URL":[null,"Kaynak URL"],"Date":[null,"Tarih"],"Add Redirect":[null,"Yönlendirme ekle"],"All modules":[null,""],"View Redirects":[null,"Yönlendirmeleri göster"],"Module":[null,"Modüle"],"Redirects":[null,"Yönlendirmeler"],"Name":[null,"İsim"],"Filter":[null,"Filtrele"],"No group filter":[null,""],"Reset Hits":[null,"Hitleri Sıfırla"],"Enable":[null,"Etkinleştir"],"Disable":[null,"Etkisizleştir"],"Delete":[null,"Sil"],"Edit":[null,"Düzenle"],"Last Access":[null,"Son Giriş"],"Hits":[null,"Hitler"],"URL":[null,"URL"],"Type":[null,"Tür"],"Modified Posts":[null,"Değiştirilmiş Yazılar"],"Redirections":[null,"Yönlendirmeler"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Ziyaretçi kullanıcı arayüzü eşleşiyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir. <strong>Tüm karşılaştırmalarda düzenli ifadeler olarak uygulanmaktadır.</strong>.\n"],"User Agent":[null,"Kullanıcı Bilgileri"],"Nintendo Wii":[null,"Nintendo Wii"],"Android":[null,"Android"],"iPad":[null,"iPad"],"iPhone":[null,"iPhone"],"Safari":[null,"Safari"],"Opera":[null,"Opera"],"FireFox":[null,"FireFox"],"Internet Explorer":[null,"Internet Explorer"],"FeedBurner":[null,"FeedBurner"],"URL and user agent":[null,"URL ve kullanıcı bilgileri"],"Target URL":[null,"Hedef URL"],"URL only":[null,"Yalnız URL"],"Not matched":[null,"Karşılaştırılamadı"],"Matched":[null,"Karşılaştırıldı"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Ziyaretçi yönlendirmede eşleşme oluyorsa kaynak URL'den yönlendirilecektir. Ziyaretçilerin yönlendirilmesi için <em>eşleşme oluyorsa</em> hedef URL adresini belirleyebilirsiniz, eğer <em>eşleşme olmuyorsa</em> ziyaretçi adrese yönlendirilmeyecektir. URL'yi boş bırakmak ziyaretçinin yönlendirilmeyeceği anlamına gelmektedir."],"HTTP Code":[null,"HTTP Kodu"],"Regex":[null,"Regex"],"Referrer":[null,"Ziyaretçi gönderen"],"URL and referrer":[null,"URL ve ziyaretçi gönderen"],"Logged Out":[null,"Çıkış Yapıldı"],"Logged In":[null,"Giriş Yapıldı"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Hedef URL, sıradaki URL'lerin içinden seçilecek, ve kullanıcının giriş yapıp yapmamış olmasına göre değişiklik gösterir. Boş bir URL yazmak ise kullanıcının yönlendirilmeyeceği anlamına gelir."],"URL and login status":[null,"URL ve giriş bilgileri"]}
 
locale/json/redirection-uk.json DELETED
@@ -1 +0,0 @@
1
- {"":{"project-id-version":"Redirect","report-msgid-bugs-to":"","pot-creation-date":"2009-02-23 20:25-0300","po-revision-date":"","last-translator":"","language-team":"wpp.pp.ua <wordpress.ua@gmail.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Ukrainian","x-poedit-country":"UKRAINE","x-poedit-sourcecharset":"utf-8","x-poedit-basepath":"c:/temp/redirection/","x-poedit-keywordslist":"__;_e"},"<p style=\"color: red\">You are not allowed access to this resource</p>":[null,"<p style=\"color: red\">Тобі не дозволений доступ до цього resource</p>"],"<p style=\"color: red\">That function is not defined</p>":[null,"<p style=\"color: red\">That функція - не defined</p>"],"Sorry, but your redirection was not created":[null,"Даруйте, але ваше перепризначення не було створене"],"Failed to retrieve group data":[null,"Невдало, щоб відновити group дані"],"Failed to retrieve module data":[null,"Невдало, щоб відновити module дані"],"How many widgets would you like?":[null,"Скільки widgets ви хотіли б?"],"Save":[null,"Збереження"],"Redirection Help":[null,"Допомога Перепризначення"],"Redirection Documentation":[null,"Документація Перепризначення"],"Redirection Support Forum":[null,"Форум Підтримки Перепризначення"],"Redirection Bug Tracker":[null,"Філер Дефекту Перепризначення"],"Redirection FAQ":[null,"Перепризначення НАЙБІЛЬШ ЧАСТО що ЗАДАЮТЬСЯ ПИТАННЯ"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"Читайте документацію і НАЙБІЛЬШ ЧАСТО що ЗАДАЮТЬСЯ ПИТАННЯ, і перевіряйте філера дефекту, перед ставленням питань."],"Redirection":[null,"Redirection"],"Your module was successfully created":[null,"Ваш модуль був успішно створений"],"Your module was not created - did you provide a name?":[null,"Ваш модуль не був створений - ви забезпечили ім'я?"],"Your options were updated":[null,"Ваш вибір був оновлений"],"Redirection data has been deleted and the plugin disabled":[null,"Перепризначення data був видалений і доповнення до програми блокувало"],"No items were imported":[null,"Ніякі елементи не були ввізними"],"Your logs have been deleted":[null,"Ваші колоди були видалені"],"Your group was added successfully":[null,"Ваша група була додана успішно"],"Please specify a group name":[null,"Конкретизуйте group ім'я"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s імпортував на %s в %s"],"XML importing is only available with PHP5 - you have PHP4.":[null,"XML, що імпортує, тільки доступний з PHP5 - ви маєте PHP4."],"URL and login status":[null,"URL і статус логіна"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"Цільовий URL буде вибраний з одного з наступного URLs, залежавши, якщо користувач реєструється або. Залишення бланка URL означає, що користувач не переприсвоєний."],"Logged In":[null,"Реєструється"],"Logged Out":[null,"Виходить"],"URL and referrer":[null,"URL і referrer"],"Referrer":[null,"Referrer"],"Regex":[null,"Regex"],"HTTP Code":[null,"Код HTTP"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"Відвідувач буде переприсвоєний з початкового URL, якщо referrer матчі. Ви можете конкретизувати <em>matched</em> цільовий URL як адреса, щоб послати відвідувачів, якщо вони відповідають, і <em>not matched</em>, якщо вони не відповідають. Залишення бланка URL означає, що відвідувач не переприсвоєний."],"Matched":[null,"Відповідають"],"Not matched":[null,"Не відповідають"],"URL only":[null,"URL тільки"],"Target URL":[null,"Цільовий URL"],"URL and user agent":[null,"URL і призначений для користувача агент"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Опера"],"Safari":[null,"Сафарі"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"User Agent":[null,"Призначений для користувача Агент"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"Відвідувач буде переприсвоєний з початкового URL, якщо матчі призначеного для користувача агента. Ви можете конкретизувати <em>matched</em> цільовий URL як адреса, щоб послати відвідувачів, якщо вони відповідають, і <em>not matched</em>, якщо вони не відповідають. Залишення бланка URL означає, що відвідувач не переприсвоєний. <strong>All матчі виконуються як регулярний expressions</strong>.\n"],"WordPress":[null,"WordPress"],"Apache":[null,"Апач"],"404 Errors":[null,"404 Помилок"],"Redirections":[null,"Redirections"],"Modified posts":[null,"Змінені пости"],"Strip WWW":[null,"Strip WWW"],"Force WWW":[null,"Викличте WWW"],"Strip index.php":[null,"Strip index.php"],"Previous":[null,"Попередній"],"Next":[null,"Потім"],"%d per-page":[null,"per-page %d"],"Displaying %s&#8211;%s of %s":[null,"Показ %s&#8211;%s з %s"],"Redirect to URL":[null,"Переприсвойте в URL"],"Redirect to random post":[null,"Переприсвойте до випадкового поста"],"Pass-through":[null,"Передача"],"Error (404)":[null,"Помилка (404)"],"Do nothing":[null,"Не робіть нічого"],"Log 404s":[null,"Log 404-і"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>Disabled: Ви повинні вирішити <href=\"options-permalink.php\">permalinks</a> перед використанням this</strong>"],"<small>No options have been set</small>":[null,"<small>No вибір був set</small>"],"Location":[null,"Розташування"],"WordPress is installed in: <code>%s</code>":[null,"У WordPress встановлюється: <code>%s</code>"],"Canonical":[null,"Канонічний"],"Leave as is":[null,"Відправтеся як є"],"Strip WWW (%s)":[null,"Strip WWW (%s)"],"Force WWW (www.%s)":[null,"Викличте WWW (www.%s)"],"Strip Index":[null,"Індекс Strip"],"Strip index files (html,php)":[null,"Strip індексні файли (html, php)"],"Memory Limit":[null,"Межа Пам'яті"],"Server default":[null,"Серверне типове значення"],"Error Level":[null,"Помилковий Рівень"],"No errors":[null,"Немає помилок"],"Show errors":[null,"Покажіть помилки"],"Ban IPs":[null,"Дюйм Заборони в секунду"],"Allow IPs":[null,"Дозвольте Дюйм в секунду"],"Raw .htaccess":[null,"Сирий .htaccess"],"Site URL":[null,"Сайт URL"],"Advanced: For management of external sites":[null,"Авансовано: Для управління зовнішніми сайтами"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>Location непрацездатний - перевіряють, що шлях exists</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"не <strong>Could запис до розміщеного <code>.htaccess</code> файлу - check файл permissions</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>Disabled: введіть розташування <code>.htaccess</code> файлу, щоб це було valid</strong>"],"strip WWW":[null,"strip WWW"],"force WWW":[null,"викличте WWW"],"strip index":[null,"strip індекс"],"memory limit at %dMB":[null,"межа пам'яті в %dMB"],"no errors":[null,"немає помилок"],"show errors":[null,"покажіть помилки"],"IPs are banned":[null,"Дюйм в секунду заборонені"],"IPs are allowed":[null,"Дюйм в секунду дозволяється"]," for external site: <code>%s</code>":[null," для зовнішнього сайту: <code>%s</code>"],"Strip index files (html,php,asp)":[null,"Strip індексні файли (html, php,asp)"],"30 seconds":[null,"30 секунд"],"1 minute":[null,"1 хвилина"],"2 minutes":[null,"2 хвилини"],"5 minutes":[null,"5 хвилин"],"As long as possible":[null,"Поки можливо"],"time limit set as long as possible":[null,"межа часу встановила, поки можливо"],"time limit at %ss":[null,"межа часу в %ss"],"Add new redirection":[null,"Додайте нового перепризначення"],"Your redirection has been added.":[null,"Ваше перепризначення було додане."],"Source URL":[null,"Початковий URL"],"Match":[null,"Матч"],"Action":[null,"Дія"],"Regular expression":[null,"Регулярний вираз"],"Group":[null,"Група"],"Add Redirection":[null,"Додайте Перепризначення"],"Name":[null,"Ім'я"],"Tracked":[null,"Відстежується"],"Whether to track 'hits' to items":[null,"Чи відстежувати 'хіти' до елементів"],"Enabled":[null,"Вирішується"],"Disabling a group will disable all items contained within it":[null,"Виведення з ладу групи блокує всі елементи, що містяться в межах цього"],"Cancel":[null,"Відміна"],"edit group":[null,"редагуйте групу"],"disabled":[null,"блоковано"],"Groups for module":[null,"Групи для модуля"],"Module":[null,"Модуль"],"Search":[null,"Пошук"],"go":[null,"йдіть"],"Hits":[null,"Хіти"],"Select All":[null,"Виберіть Все"],"Toggle":[null,"Колінчастий важіль"],"Reset Hits":[null,"Знову Встановіть Хіти"],"Delete":[null,"Видалення"],"Move To":[null,"Перемістіться"],"re-order":[null,"повторно замовте"],"save order":[null,"збережіть замовлення"],"You have no groups in this module.":[null,"Ви не маєте ніяких груп в цьому модулі."],"Add Group":[null,"Додайте Групу"],"Add":[null,"Додайте"],"Please wait...":[null,"Будь ласка очікування..."],"Are you sure?":[null,"- те, що ви запевняєте?"],"No items have been selected":[null,"Ніякі елементи не були вибрані"],"%s by matching %s":[null,"%s відповідаючи %s"],"Title":[null,"Заголовок"],"optional":[null,"необов'язковий"],"Redirections for group":[null,"Перепризначення для групи"],"Go":[null,"Йдіть"],"Last Access":[null,"Останній Доступ"],"Type":[null,"Тип"],"URL":[null,"URL"],"Position":[null,"Позиція"],"You have no redirections.":[null,"Ви не маєте ніяких перепризначень."],"Redirection Log":[null,"Колода Перепризначення"],"Bulk Actions":[null,"Масові Дії"],"Apply":[null,"Зверніться"],"Filter":[null,"Фільтр"],"Date":[null,"Дата"],"IP":[null,"IP"],"There are no logs to display!":[null,"Немає ніяких колод для показу!"],"Process Current Logs":[null,"Обробіть Поточні Колоди"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"Ці дії впливатимуть на все зараз доступні колоди (тобто ваша пошукова фраза обмежить log елементи)."],"Delete Logs":[null,"Видаліть Колоди"],"Export to CSV":[null,"Експортний до CSV"],"Redirect to":[null,"Переприсвойте"],"Redirected by":[null,"Переприсвоєно близько"],"for":[null,"для"],"View as":[null,"Розглядайте, як"],"CSV":[null,"CSV"],"XML":[null,"XML"],"RSS":[null,"RSS"],"edit":[null,"редагування"],"delete":[null,"видалення"],"reset":[null,"скидання"],"Modules":[null,"Модулі"],"Details":[null,"Деталі"],"Groups":[null,"Групи"],"Items":[null,"Елементи"],"Operations":[null,"Дії"],"Note: Hits are dependant on log entries":[null,"Примітка: Хіти - утриманець на log входах"],"You have no modules defined yet":[null,"Ви не визначили ніяких модулів ще"],"Add Module":[null,"Додайте Модуль"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"Модуль - елемент, що управляє, який визначає, як перепризначення управляються. Елементами в модулі WordPress управляють WordPress, елементами в модулі Apache управляють <code>.htaccess</code>, і елементи в 404 module афекті, як 404 помилки зареєстровано."],"Create":[null,"Створіть"],"Options":[null,"Вибір"],"Auto-generate URL":[null,"Auto-generate URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"Це буде звиклим до auto-generate URL, якщо ніякий URL не наданий. Ви можете використовувати спеціальний ознаки $dec$ або $hex$, щоб вставити унікальний ID (або десятковий, або шістнадцятковий)"],"IP Lookup Service":[null,"IP Служба Пошуку"],"Plugin Support":[null,"Вставна Підтримка"],"I'm a nice person and I have helped support the author of this plugin":[null,"Я - приємна людина і я допомогли підтримці автор цього доповнення до програми"],"Expire Logs":[null,"Видихніть Колоди"],"days (enter 0 for no expiry)":[null,"дні (введіть 0 ні для якого закінчення)"],"RSS Token":[null,"Знак RSS"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"Унікальні дозволяючі читачі живлення, що здаються, мають доступ до Перепризначення RSS (leave бланк до auto-generate)"],"URL Monitoring":[null,"Контроль URL"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"Ви можете мати Перепризначення detect зміни в URLs і створювати автоматичне перепризначення в специфічній групі."],"Post &amp; Page URLs":[null,"Поштовий &amp; Сторінка URLs"],"Don't monitor":[null,"Не контролюйте"],"Monitor new posts":[null,"Monitor нові пости"],"Category URLs":[null,"Категорія URLs"],"Update":[null,"Модифікація"],"Import":[null,"Імпорт"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"Тут ви можете імпортувати перепризначення від існуючого .htaccess файлу, файлу CSV, або Перепризначення XML."],"Import into":[null,"Імпортуйте всередину"],"Upload":[null,"Upload"],"Note that the group is ignored when uploading an XML file.":[null,"Відзначте, що група проігнорована, пересилаючи файл XML."],"Delete Redirection":[null,"Видаліть Перепризначення"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"Відбір цього вибору видалить всі перепризначення, всі колоди, і будь-який вибір зв'язався з доповненням Перепризначення до програми. Переконайтеся, що це - те, що ви хочете зробити."],"Redirects":[null,"Переприсвоювання"],"Log":[null,"Колода"],"Redirection Support":[null,"Підтримка Перепризначення"],"Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested.":[null,"Перепризначення зажадало багато часу і зусилля розвиватися. Якщо це корисно для вас потім ви можете підтримувати цей розвиток <strong>making маленьке пожертвування $8</strong>. Це служитиме стимулом, щоб я зайнявся розвитком цього, забезпечуючи незліченні години підтримки, і зокрема будь-які збільшення, які запропоновані."],"Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>.":[null,"Альтернативно, якщо ви багато-мовні, розглядають переклад цього іншою мовою. Всі необхідні файли локалізації включаються і я написали href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide до переклад process</a>."],"Other plugins":[null,"Інші доповнення до програми"],"You may also be interested in some of my other plugins:":[null,"Ви, можливо, також зацікавлені в чомусь з мене інші доповнення до програми:"],"HeadSpace":[null,"Headspace"],"The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!":[null,"Найповніший SEO менеджер мета--даних і багатобічне загальне доповнення мети до програми для WordPress. Replace п'ять або шести доповнень до програми з одним єдиним супер-доповненням до програми!"],"Search Unleashed":[null,"Знайдіть Спущено з прив'язі"],"Attractive searches that go beyond the default WordPress search and increase the usefulness of your site.":[null,"Привабливі пошуки, які виходять за default WordPress, шукають і збільшують повноцінність вашого сайту."],"Sniplets":[null,"Sniplets"],"very flexible and powerful text insertion that allows you to insert what you want, wherever you want it.":[null,"дуже гнучка і могутня text вставка, яка дозволяє вам вставляти, що ви хочете, де б ви не хотіли це."],"This notice will only be shown at periodic intervals.":[null,"Це сповіщення тільки буде показано з періодичними проміжками."]}
 
locale/json/redirection-zh_CN.json DELETED
@@ -1 +0,0 @@
1
- {"":{"project-id-version":"Redirection 2.1.12","report-msgid-bugs-to":"","pot-creation-date":"2009-03-14 02:29+0800","po-revision-date":"","last-translator":"SHA Miao (沙渺) <shamiao.com@gmail.com>","language-team":"SHA Miao (http://shamiao.com) <shamiao.com@gmail.com>","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","x-poedit-language":"Chinese","x-poedit-country":"CHINA","x-poedit-sourcecharset":"utf-8","x-poedit-basepath":"D:\\redirection","x-poedit-keywordslist":"__;_e;__ngettext","x-poedit-searchpath-0":"."},"<p style=\"color: red\">You are not allowed access to this resource</p>":[null,"<p style=\"color: red\">抱歉,你不被授权访问这个资源。</p>"],"<p style=\"color: red\">That function is not defined</p>":[null,"<p style=\"color: red\">这个函数没有定义。</p>"],"Sorry, but your redirection was not created":[null,"转向记录创建失败。"],"Failed to retrieve group data":[null,"读取分组数据失败。"],"Failed to retrieve module data":[null,"读取模块数据失败。"],"How many widgets would you like?":[null,"你需要几个小工具(widget)?"],"Save":[null,"保存"],"Redirection Help":[null,"Redirection 帮助"],"Redirection Documentation":[null,"Redirection 文档"],"Redirection Support Forum":[null,"Redirection 支持论坛"],"Redirection Bug Tracker":[null,"Redirection 故障报告"],"Redirection FAQ":[null,"Redirection 常见问题"],"Please read the documentation and FAQ, and check the bug tracker, before asking a question.":[null,"请在提问之前,先自行检查文档和常见问题列表。"],"Redirection":[null,"转向(Redirection)"],"Your module was successfully created":[null,"模块创建成功。"],"Your module was not created - did you provide a name?":[null,"模块没有创建。请为模块制定一个名字。"],"Your options were updated":[null,"选项已更新。"],"Redirection data has been deleted and the plugin disabled":[null,"所有转向记录已删除,同时插件也已禁用。"],"%d redirection was successfully imported":[null,"成功导入 %d 条转向记录。"],"No items were imported":[null,"未导入任何信息。"],"Your logs have been deleted":[null,"访问历史已删除。"],"Your group was added successfully":[null,"成功添加分组。"],"Please specify a group name":[null,"请输入分组的名称"],"Add new redirection":[null,"添加新的转向记录"],"Your redirection has been added.":[null,"转向记录添加成功!"],"Source URL":[null,"原始 URL"],"Match":[null,"匹配"],"Action":[null,"行为"],"Regular expression":[null,"正则表达式匹配"],"Target URL":[null,"目标 URL"],"Group":[null,"组"],"Add Redirection":[null,"添加转向记录"],"Name":[null,"名称"],"Tracked":[null,"跟踪"],"Whether to track 'hits' to items":[null,"是否将点击数统计到每一个具体的转向记录"],"Enabled":[null,"有效"],"Disabling a group will disable all items contained within it":[null,"禁用一个分组会使其内所有的转向记录停止工作。"],"Cancel":[null,"取消"],"edit group":[null,"编辑分组"],"disabled":[null,"禁用"],"Groups for module":[null,"分组 - 属于模块"],"Module":[null,"模块"],"Search":[null,"搜索"],"go":[null,"执行"],"Hits":[null,"点击"],"Select All":[null,"全选"],"Toggle":[null,"切换启用/禁用"],"Reset Hits":[null,"点击数清零"],"Delete":[null,"删除"],"Move To":[null,"移动到"],"re-order":[null,"排序"],"save order":[null,"保存排序"],"You have no groups in this module.":[null,"这个模块中没有分组。"],"Add Group":[null,"添加分组"],"Add":[null,"添加"],"Please wait...":[null,"请稍候……"],"Are you sure?":[null,"确认吗?"],"No items have been selected":[null,"你还没有选中任何一个条目 :P"],"%s by matching %s":[null,"%s - 通过%s"],"Title":[null,"标题"],"optional":[null,"可选"],"Regex":[null,"正则表达式"],"Redirections for group":[null,"转向记录 - 属于分组"],"Go":[null,"执行"],"Last Access":[null,"最后访问"],"Type":[null,"类型"],"URL":[null,"URL"],"Position":[null,"排序"],"You have no redirections.":[null,"没有转向记录。"],"Redirection Log":[null,"访问历史"],"Bulk Actions":[null,"批量操作"],"Apply":[null,"应用"],"Filter":[null,"过滤器"],"Date":[null,"日期"],"Referrer":[null,"引用页"],"IP":[null,"IP"],"There are no logs to display!":[null,"没有可供查阅的访问历史。"],"Process Current Logs":[null,"全局操作"],"These actions will affect all currently available logs (i.e. your search phrase will restrict the log items).":[null,"这些操作,将影响所有以上显示出来的访问历史。当然你可以通过搜索限定范围。"],"Delete Logs":[null,"删除"],"Export to CSV":[null,"导出CSV文件"],"Redirect to":[null,"转到"],"Redirected by":[null,"方式"],"for":[null,"从"],"User Agent":[null,"浏览器(UA)"],"View as":[null,"查看"],"CSV":[null,"CSV"],"XML":[null,"XML"],"Apache":[null,"Apache"],"RSS":[null,"RSS"],"edit":[null,"编辑"],"delete":[null,"删除"],"reset":[null,"重设"],"Modules":[null,"模块"],"Details":[null,"详细"],"Groups":[null,"分组"],"Items":[null,"条目"],"Operations":[null,"操作"],"Note: Hits are dependant on log entries":[null,"注:点击数取决于访问历史中现存的条目数量。"],"You have no modules defined yet":[null,"还没有定义任何模块。"],"Add Module":[null,"创建模块"],"A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged.":[null,"模块是为了跟踪和控制转向操作最终由哪部分程序来实现。WordPress模块的记录交由WordPress主程序主持,Apache模块的记录由<code>.htaccess</code>实现,而404模块负责向日志记录404错误。"],"Create":[null,"创建"],"Options":[null,"选项"],"Auto-generate URL":[null,"自动生成原URL"],"This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)":[null,"如果不显式的给出原URL,将根据这里的规则自动生成一个。这个行为有点像TinyURL。你可以使用 $dec 或 $hex$ 标签,以10或16进制生成自动编号。"],"IP Lookup Service":[null,"IP查询数据库"],"Plugin Support":[null,"支持插件"],"I'm a nice person and I have helped support the author of this plugin":[null,"我是个热心人,我已经资助或支援了插件的作者。要诚实选择哦!"],"Expire Logs":[null,"历史记录过期时间"],"days (enter 0 for no expiry)":[null,"天 (0 代表永不过期)"],"RSS Token":[null,"RSS代码"],"A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)":[null,"输入一个独一无二的代号,允许读者通过RSS Feed查看Redirection的数据。(建议留空,让程序自动生成一个)"],"URL Monitoring":[null,"URL监视"],"You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group.":[null,"你可以监视属于一个特定的分组的文章,在它们的URL改变的时候,自动设置转向。"],"Post &amp; Page URLs":[null,"选择日志和页面"],"Don't monitor":[null,"不监视"],"Monitor new posts":[null,"同时监视新增的条目"],"Category URLs":[null,"分类的URL"],"Update":[null,"保存选项"],"Import":[null,"导入"],"Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML.":[null,"你可以从.htaccess文件、CSV文件或Redirection插件生成的XML文件,导入转向记录。"],"Import into":[null,"导入到"],"Upload":[null,"确认上传"],"Note that the group is ignored when uploading an XML file.":[null,"注意:导入XML文件时会忽略分组信息。"],"Delete Redirection":[null,"卸载Redirection插件"],"Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do.":[null,"这个操作会删除所有的转向记录、访问历史和有关Redirection插件的所有选项。删除的记录难以恢复,请您卸载前三思!"],"Redirects":[null,"转向"],"Log":[null,"历史"],"Redirection Support":[null,"Redirection插件需要你的支持!"],"Redirection has required a great deal of time and effort to develop. If it's been useful to you then you can support this development by <strong>making a small donation of $8</strong>. This will act as an incentive for me to carry on developing it, providing countless hours of support, and including any enhancements that are suggested.":[null,"开发Redirection插件花费了我很多的时间和精力。如果这个插件在您的站点派上了用场,您不妨<strong>小小的资助我8美元</strong>。您的资助,可以鼓励我继续开发这个插件、提供答疑和支持,同时根据大家的提议,为插件增加更有用的功能。"],"Alternatively, if you are multi-lingual, do consider translating this into another language. All the necessary localisation files are included and I've written a <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">full guide to the translation process</a>.":[null,"或者,如果你通晓多国语言,也可以考虑翻译Redirection插件。插件包含了所有进行本地化工作所需要的资源。我也写了一篇<a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">完全翻译指南(英语)</a>可供参考。(对于中文开发者,请参考<a href=\"http://fairyfish.net\" title=\"我爱水煮鱼 WordPress应用技术专业博客\">我爱水煮鱼</a>的《<a href=\"http://fairyfish.net/2007/09/09/localizing-a-wordpress-plugin-using-poedit/\" title=\"使用 poEdit 本地化 WordPress 插件\">使用 poEdit 本地化 WordPress 插件</a>》——<a href=\"http://shamiao.com\" title=\"沙渺很忙:linux+PHP+CMS+嵌入式,一个电脑老玩家的互联网生活\">译者</a>注)"],"Other plugins":[null,"其他插件"],"You may also be interested in some of my other plugins:":[null,"你也许对我写的其他插件会感兴趣:"],"HeadSpace":[null,"HeadSpace"],"The most complete SEO meta-data manager and all-round general purpose plugin for WordPress. Replace five or six plugins with one single super-plugin!":[null,"完成度很高的SEO、meta数据管理,同时完成许多常规任务的综合性插件,用一个“全能”插件,代替原来五六个插件实现的功能!"],"Search Unleashed":[null,"Search Unleashed"],"Attractive searches that go beyond the default WordPress search and increase the usefulness of your site.":[null,"增强WordPress自身搜索功能的工具,强化站点的可用性。"],"Sniplets":[null,"Sniplets"],"very flexible and powerful text insertion that allows you to insert what you want, wherever you want it.":[null,"可以高度自定义的,强大的文本代换插件。在日志的任何地方,用简易的形式插入你想要的文字。"],"This notice will only be shown at periodic intervals.":[null,"这个提示并非每次都有,而只会时常出现。"],"Log 404s":[null,"记录404错误"],"<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>":[null,"<strong>插件无效: 运行这个插件之前,必须开启WordPress的“<a href=\"options-permalink.php\">固定链接</a>”功能!</strong>"],"<small>No options have been set</small>":[null,"<small>没有设置任何选项。</small>"],"Location":[null,"位置"],"WordPress is installed in: <code>%s</code>":[null,"WordPress 安装在: <code>%s</code>"],"Canonical":[null,"URL范式"],"Leave as is":[null,"不特地影响"],"Strip WWW (%s)":[null,"略去www (%s)"],"Force WWW (www.%s)":[null,"强制www (www.%s)"],"Strip Index":[null,"去除默认页面名称"],"Strip index files (html,php)":[null,"显式的去除默认页面名称 (html,php)"],"Memory Limit":[null,"内存限制"],"Server default":[null,"服务器默认值"],"Error Level":[null,"错误级别"],"No errors":[null,"隐藏错误"],"Show errors":[null,"显示错误"],"Ban IPs":[null,"封禁IP地址"],"Allow IPs":[null,"放行IP地址"],"Raw .htaccess":[null,"手工输入.htaccess"],"Site URL":[null,"站点 URL"],"Advanced: For management of external sites":[null,"(高级选项) 用于管理外部站点"],"<strong>Location is invalid - check that path exists</strong>":[null,"<strong>位置无效,请检查物理路径是否存在。</strong>"],"<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>":[null,"<strong>不能写入<code>.htaccess</code>文件,请检查权限,保证文件可写</strong>"],"<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>":[null,"<strong>功能已禁止。需要重新开启功能,请指定<code>.htaccess</code>文件的地址。</strong>"],"strip WWW":[null,"略去www"],"force WWW":[null,"强制www"],"strip index":[null,"略去默认页面名称"],"memory limit at %dMB":[null,"内存限制 %dMB"],"no errors":[null,"隐藏错误"],"show errors":[null,"显示错误"],"IPs are banned":[null,"禁止的IP地址"],"IPs are allowed":[null,"放行的IP地址"]," for external site: <code>%s</code>":[null," 外部站点<code>%s</code>"],"Strip index files (html,php,asp)":[null,"略去默认页面名称 (html,php,asp)"],"30 seconds":[null,"30秒"],"1 minute":[null,"1分钟"],"2 minutes":[null,"2分钟"],"5 minutes":[null,"5分钟"],"As long as possible":[null,"越长越好"],"time limit set as long as possible":[null,"时间限制越长越好"],"time limit at %ss":[null,"时间限制 %ss"],"WordPress":[null,"WordPress"],"404 Errors":[null,"404错误"],"Redirections":[null,"转向数据"],"Modified posts":[null,"修改的日志"],"Strip WWW":[null,"略去www"],"Force WWW":[null,"强制www"],"Strip index.php":[null,"略去index.php"],"Previous":[null,"上一页"],"Next":[null,"下一页"],"%d per-page":[null,"每页 %d 条"],"Displaying %s&#8211;%s of %s":[null,"本页显示%s&#8211;%s,总数%s"],"Redirect to URL":[null,"重定向到目标URL"],"Redirect to random post":[null,"重定向到随机文章"],"Pass-through":[null,"无转向重写"],"Error (404)":[null,"返回404错误"],"Do nothing":[null,"无动作"],"URL and login status":[null,"匹配URL和登录状态"],"The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected.":[null,"根据用户登录与否,使用不同的URL进行转向。留空代表访客在该种情况下不会被转向。"],"Logged In":[null,"已登录"],"Logged Out":[null,"未登录"],"URL and referrer":[null,"匹配URL和引用页"],"HTTP Code":[null,"HTTP 代码"],"The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected.":[null,"如果引用页匹配成功,访问者就会被转向。你可以为了<em>匹配</em>和<em>不匹配</em>两种可能的结果,各自指定一个目标URL。留空代表访客在该种情况下不会被转向。"],"Matched":[null,"匹配"],"Not matched":[null,"不匹配"],"URL only":[null,"匹配URL"],"URL and user agent":[null,"匹配URL和浏览器(UA)"],"FeedBurner":[null,"FeedBurner"],"Internet Explorer":[null,"Internet Explorer"],"FireFox":[null,"FireFox"],"Opera":[null,"Opera"],"Safari":[null,"Safari"],"iPhone":[null,"iPhone"],"Nintendo Wii":[null,"Nintendo Wii"],"The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n":[null,"如果引用页匹配成功,访问者就会被转向。你可以为了<em>匹配</em>和<em>不匹配</em>两种可能的结果,各自指定一个目标URL。留空代表访客在该种情况下不会被转向。<strong>匹配行为基于正则表达式</strong>。\n"],"module_%d.csv":[null,"module_%d.csv"],"module_%d.xml":[null,"module_%d.xml"],"%s imported on %s at %s":[null,"%s 在 %s %s 被导入。"],"XML importing is only available with PHP5 - you have PHP4.":[null,"PHP版本不够。导入XML功能要求至少PHP5版本。"]}
 
locale/json/redirection-zh_TW.json CHANGED
@@ -1 +1 @@
1
- {"":{"po-revision-date":"2017-09-14 17:14:20+0000","mime-version":"1.0","content-type":"text/plain; charset=UTF-8","content-transfer-encoding":"8bit","plural-forms":"nplurals=1; plural=0;","x-generator":"GlotPress/2.4.0-alpha","language":"zh_TW","project-id-version":"Plugins - Redirection - Stable (latest release)"},"https://redirection.me/":[null,""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[null,""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[null,""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[null,""],"Never cache":[null,""],"An hour":[null,""],"Redirect Cache":[null,""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[null,""],"Are you sure you want to import from %s?":[null,""],"Plugin Importers":[null,""],"The following redirect plugins were detected on your site and can be imported from.":[null,""],"total = ":[null,""],"Import from %s":[null,""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[null,""],"Redirection not installed properly":[null,""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[null,""],"Default WordPress \"old slugs\"":[null,""],"Create associated redirect (added to end of URL)":[null,""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[null,""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[null,""],"⚡️ Magic fix ⚡️":[null,""],"Plugin Status":[null,""],"Custom":[null,""],"Mobile":[null,""],"Feed Readers":[null,""],"Libraries":[null,""],"URL Monitor Changes":[null,""],"Save changes to this group":[null,""],"For example \"/amp\"":[null,""],"URL Monitor":[null,""],"Monitor changes to pages":[null,""],"Monitor trashed items (will create disabled redirects)":[null,""],"Delete 404s":[null,""],"Delete all logs for this 404":[null,""],"Delete all from IP %s":[null,""],"Delete all matching \"%s\"":[null,""],"Your server has rejected the request for being too big. You will need to change it to continue.":[null,""],"Also check if your browser is able to load <code>redirection.js</code>:":[null,""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[null,""],"Unable to load Redirection":[null,""],"Unable to create group":[null,""],"Failed to fix database tables":[null,""],"Post monitor group is valid":[null,""],"Post monitor group is invalid":[null,""],"Post monitor group":[null,""],"All redirects have a valid group":[null,""],"Redirects with invalid groups detected":[null,""],"Valid redirect group":[null,""],"Valid groups detected":[null,""],"No valid groups, so you will not be able to create any redirects":[null,""],"Valid groups":[null,""],"Database tables":[null,""],"The following tables are missing:":[null,""],"All tables present":[null,""],"Cached Redirection detected":[null,""],"Please clear your browser cache and reload this page.":[null,""],"The data on this page has expired, please reload.":[null,""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[null,""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[null,""],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[null,""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[null,""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[null,""],"If you think Redirection is at fault then create an issue.":[null,""],"This may be caused by another plugin - look at your browser's error console for more details.":[null,""],"Loading, please wait...":[null,""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[null,""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[null,""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[null,""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[null,""],"Create Issue":[null,""],"Email":[null,""],"Important details":[null,"重要詳細資料"],"Need help?":[null,""],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[null,""],"Pos":[null,"排序"],"410 - Gone":[null,"410 - 已移走"],"Position":[null,"排序"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[null,""],"Apache Module":[null,"Apache 模組"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[null,""],"Import to group":[null,"匯入至群組"],"Import a CSV, .htaccess, or JSON file.":[null,"匯入 CSV 、 .htaccess 或 JSON 檔案。"],"Click 'Add File' or drag and drop here.":[null,""],"Add File":[null,"新增檔案"],"File selected":[null,"檔案已選擇"],"Importing":[null,"匯入"],"Finished importing":[null,"已完成匯入"],"Total redirects imported:":[null,"總共匯入的重新導向:"],"Double-check the file is the correct format!":[null,""],"OK":[null,"確定"],"Close":[null,"關閉"],"All imports will be appended to the current database.":[null,"所有的匯入將會顯示在目前的資料庫。"],"Export":[null,"匯出"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[null,""],"Everything":[null,"全部"],"WordPress redirects":[null,"WordPress 的重新導向"],"Apache redirects":[null,"Apache 的重新導向"],"Nginx redirects":[null,"Nginx 的重新導向"],"CSV":[null,"CSV"],"Apache .htaccess":[null,""],"Nginx rewrite rules":[null,""],"Redirection JSON":[null,""],"View":[null,"檢視"],"Log files can be exported from the log pages.":[null,""],"Import/Export":[null,"匯入匯出"],"Logs":[null,"記錄"],"404 errors":[null,"404 錯誤"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[null,""],"I'd like to support some more.":[null,""],"Support 💰":[null,"支援 💰"],"Redirection saved":[null,"重新導向已儲存"],"Log deleted":[null,""],"Settings saved":[null,"設定已儲存"],"Group saved":[null,"群組已儲存"],"Are you sure you want to delete this item?":["Are you sure you want to delete these items?",[""]],"pass":[null,"經由"],"All groups":[null,"所有群組"],"301 - Moved Permanently":[null,"301 - 已永久移動"],"302 - Found":[null,"302 - 找到"],"307 - Temporary Redirect":[null,"307 - 暫時重新導向"],"308 - Permanent Redirect":[null,"308 - 永久重新導向"],"401 - Unauthorized":[null,"401 - 未授權"],"404 - Not Found":[null,"404 - 找不到頁面"],"Title":[null,"標題"],"When matched":[null,"當符合"],"with HTTP code":[null,""],"Show advanced options":[null,"顯示進階選項"],"Matched Target":[null,"有符合目標"],"Unmatched Target":[null,"無符合目標"],"Saving...":[null,"儲存…"],"View notice":[null,"檢視注意事項"],"Invalid source URL":[null,"無效的來源網址"],"Invalid redirect action":[null,"無效的重新導向操作"],"Invalid redirect matcher":[null,"無效的重新導向比對器"],"Unable to add new redirect":[null,""],"Something went wrong 🙁":[null,""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[null,""],"It didn't work when I tried again":[null,""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[null,""],"Log entries (%d max)":[null,""],"Search by IP":[null,"依 IP 搜尋"],"Select bulk action":[null,"選擇批量操作"],"Bulk Actions":[null,"批量操作"],"Apply":[null,"套用"],"First page":[null,"第一頁"],"Prev page":[null,"前一頁"],"Current Page":[null,"目前頁數"],"of %(page)s":[null,"之 %(頁)s"],"Next page":[null,"下一頁"],"Last page":[null,"最後頁"],"%s item":["%s items",[""]],"Select All":[null,"全選"],"Sorry, something went wrong loading the data - please try again":[null,""],"No results":[null,"無結果"],"Delete the logs - are you sure?":[null,"刪除記錄 - 您確定嗎?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[null,""],"Yes! Delete the logs":[null,"是!刪除記錄"],"No! Don't delete the logs":[null,"否!不要刪除記錄"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[null,""],"Newsletter":[null,""],"Want to keep up to date with changes to Redirection?":[null,""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[null,""],"Your email address:":[null,""],"You've supported this plugin - thank you!":[null,""],"You get useful software and I get to carry on making it better.":[null,""],"Forever":[null,"永遠"],"Delete the plugin - are you sure?":[null,""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[null,""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[null,""],"Yes! Delete the plugin":[null,""],"No! Don't delete the plugin":[null,""],"http://urbangiraffe.com":[null,""],"John Godley":[null,""],"Manage all your 301 redirects and monitor 404 errors":[null,""],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[null,""],"Support":[null,"支援"],"404s":[null,"404 錯誤"],"Log":[null,"記錄"],"Delete Redirection":[null,"刪除重新導向"],"Upload":[null,"上傳"],"Import":[null,"匯入"],"Update":[null,"更新"],"Auto-generate URL":[null,"自動產生網址"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[null,""],"RSS Token":[null,"RSS 動態金鑰"],"Monitor changes to posts":[null,"監視變更的發表"],"404 Logs":[null,"404 記錄"],"(time to keep logs for)":[null,"(保留記錄時間)"],"Redirect Logs":[null,"重新導向記錄"],"I'm a nice person and I have helped support the author of this plugin":[null,"我是個熱心人,我已經贊助或支援外掛作者"],"Plugin Support":[null,"外掛支援"],"Options":[null,"選項"],"Two months":[null,"兩個月"],"A month":[null,"一個月"],"A week":[null,"一週"],"A day":[null,"一天"],"No logs":[null,"不記錄"],"Delete All":[null,"全部刪除"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[null,""],"Add Group":[null,"新增群組"],"Search":[null,"搜尋"],"Groups":[null,"群組"],"Save":[null,"儲存"],"Group":[null,"群組"],"Match":[null,"符合"],"Add new redirection":[null,"新增重新導向"],"Cancel":[null,"取消"],"Download":[null,"下載"],"Redirection":[null,"重新導向"],"Settings":[null,"設定"],"Do nothing":[null,"什麼也不做"],"Error (404)":[null,"錯誤 (404)"],"Pass-through":[null,"直接經由"],"Redirect to random post":[null,"重新導向隨機發表"],"Redirect to URL":[null,"重新導向至網址"],"Invalid group when creating redirect":[null,""],"Show only this IP":[null,"僅顯示此 IP"],"IP":[null,"IP"],"Source URL":[null,"來源網址"],"Date":[null,"日期"],"Add Redirect":[null,"新增重新導向"],"All modules":[null,"所有模組"],"View Redirects":[null,"檢視重新導向"],"Module":[null,"模組"],"Redirects":[null,"重新導向"],"Name":[null,"名稱"],"Filter":[null,"篩選"],"Reset hits":[null,"重設點擊"],"Enable":[null,"啟用"],"Disable":[null,"停用"],"Delete":[null,"刪除"],"Edit":[null,"編輯"],"Last Access":[null,"最後存取"],"Hits":[null,"點擊"],"URL":[null,"網址"],"Type":[null,"類型"],"Modified Posts":[null,"特定發表"],"Redirections":[null,"重新導向"],"User Agent":[null,"使用者代理程式"],"URL and user agent":[null,"網址與使用者代理程式"],"Target URL":[null,"目標網址"],"URL only":[null,"僅限網址"],"Regex":[null,"正則表達式"],"Referrer":[null,"引用頁"],"URL and referrer":[null,"網址與引用頁"],"Logged Out":[null,"已登出"],"Logged In":[null,"已登入"],"URL and login status":[null,"網址與登入狀態"]}
1
+ {"":[],"https://redirection.me/":[""],"Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first.":[""],"If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide.":[""],"If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!":[""],"Never cache":[""],"An hour":[""],"Redirect Cache":[""],"How long to cache redirected 301 URLs (via \"Expires\" HTTP header)":[""],"Are you sure you want to import from %s?":[""],"Plugin Importers":[""],"The following redirect plugins were detected on your site and can be imported from.":[""],"total = ":[""],"Import from %s":[""],"Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details.":[""],"Redirection not installed properly":[""],"Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress":[""],"Default WordPress \"old slugs\"":[""],"Create associated redirect (added to end of URL)":[""],"<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again.":[""],"If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below.":[""],"⚡️ Magic fix ⚡️":[""],"Plugin Status":[""],"Custom":[""],"Mobile":[""],"Feed Readers":[""],"Libraries":[""],"URL Monitor Changes":[""],"Save changes to this group":[""],"For example \"/amp\"":[""],"URL Monitor":[""],"Monitor changes to pages":[""],"Monitor trashed items (will create disabled redirects)":[""],"Delete 404s":[""],"Delete all logs for this 404":[""],"Delete all from IP %s":[""],"Delete all matching \"%s\"":[""],"Your server has rejected the request for being too big. You will need to change it to continue.":[""],"Also check if your browser is able to load <code>redirection.js</code>:":[""],"If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache.":[""],"Unable to load Redirection":[""],"Unable to create group":[""],"Failed to fix database tables":[""],"Post monitor group is valid":[""],"Post monitor group is invalid":[""],"Post monitor group":[""],"All redirects have a valid group":[""],"Redirects with invalid groups detected":[""],"Valid redirect group":[""],"Valid groups detected":[""],"No valid groups, so you will not be able to create any redirects":[""],"Valid groups":[""],"Database tables":[""],"The following tables are missing:":[""],"All tables present":[""],"Cached Redirection detected":[""],"Please clear your browser cache and reload this page.":[""],"The data on this page has expired, please reload.":[""],"WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log.":[""],"Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?":[""],"WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again.":[""],"If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts.":[""],"Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}.":[""],"If you think Redirection is at fault then create an issue.":[""],"This may be caused by another plugin - look at your browser's error console for more details.":[""],"Loading, please wait...":[""],"{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes).":[""],"Redirection is not working. Try clearing your browser cache and reloading this page.":[""],"If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details.":[""],"If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot.":[""],"Create Issue":[""],"Email":[""],"Important details":["重要詳細資料"],"Need help?":[""],"Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support.":[""],"Pos":["排序"],"410 - Gone":["410 - 已移走"],"Position":["排序"],"Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted":[""],"Apache Module":["Apache 模組"],"Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}.":[""],"Import to group":["匯入至群組"],"Import a CSV, .htaccess, or JSON file.":["匯入 CSV 、 .htaccess 或 JSON 檔案。"],"Click 'Add File' or drag and drop here.":[""],"Add File":["新增檔案"],"File selected":["檔案已選擇"],"Importing":["匯入"],"Finished importing":["已完成匯入"],"Total redirects imported:":["總共匯入的重新導向:"],"Double-check the file is the correct format!":[""],"OK":["確定"],"Close":["關閉"],"All imports will be appended to the current database.":["所有的匯入將會顯示在目前的資料庫。"],"Export":["匯出"],"Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups).":[""],"Everything":["全部"],"WordPress redirects":["WordPress 的重新導向"],"Apache redirects":["Apache 的重新導向"],"Nginx redirects":["Nginx 的重新導向"],"CSV":["CSV"],"Apache .htaccess":[""],"Nginx rewrite rules":[""],"Redirection JSON":[""],"View":["檢視"],"Log files can be exported from the log pages.":[""],"Import/Export":["匯入匯出"],"Logs":["記錄"],"404 errors":["404 錯誤"],"Please mention {{code}}%s{{/code}}, and explain what you were doing at the time":[""],"I'd like to support some more.":[""],"Support 💰":["支援 💰"],"Redirection saved":["重新導向已儲存"],"Log deleted":[""],"Settings saved":["設定已儲存"],"Group saved":["群組已儲存"],"Are you sure you want to delete this item?":[[""]],"pass":["經由"],"All groups":["所有群組"],"301 - Moved Permanently":["301 - 已永久移動"],"302 - Found":["302 - 找到"],"307 - Temporary Redirect":["307 - 暫時重新導向"],"308 - Permanent Redirect":["308 - 永久重新導向"],"401 - Unauthorized":["401 - 未授權"],"404 - Not Found":["404 - 找不到頁面"],"Title":["標題"],"When matched":["當符合"],"with HTTP code":[""],"Show advanced options":["顯示進階選項"],"Matched Target":["有符合目標"],"Unmatched Target":["無符合目標"],"Saving...":["儲存…"],"View notice":["檢視注意事項"],"Invalid source URL":["無效的來源網址"],"Invalid redirect action":["無效的重新導向操作"],"Invalid redirect matcher":["無效的重新導向比對器"],"Unable to add new redirect":[""],"Something went wrong 🙁":[""],"I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it might work - great!":[""],"It didn't work when I tried again":[""],"See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem.":[""],"Log entries (%d max)":[""],"Search by IP":["依 IP 搜尋"],"Select bulk action":["選擇批量操作"],"Bulk Actions":["批量操作"],"Apply":["套用"],"First page":["第一頁"],"Prev page":["前一頁"],"Current Page":["目前頁數"],"of %(page)s":["之 %(頁)s"],"Next page":["下一頁"],"Last page":["最後頁"],"%s item":[[""]],"Select All":["全選"],"Sorry, something went wrong loading the data - please try again":[""],"No results":["無結果"],"Delete the logs - are you sure?":["刪除記錄 - 您確定嗎?"],"Once deleted your current logs will no longer be available. You can set a delete schedule from the Redirection options if you want to do this automatically.":[""],"Yes! Delete the logs":["是!刪除記錄"],"No! Don't delete the logs":["否!不要刪除記錄"],"Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription.":[""],"Newsletter":[""],"Want to keep up to date with changes to Redirection?":[""],"Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release.":[""],"Your email address:":[""],"You've supported this plugin - thank you!":[""],"You get useful software and I get to carry on making it better.":[""],"Forever":["永遠"],"Delete the plugin - are you sure?":[""],"Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin.":[""],"Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache.":[""],"Yes! Delete the plugin":[""],"No! Don't delete the plugin":[""],"http://urbangiraffe.com":[""],"John Godley":[""],"Manage all your 301 redirects and monitor 404 errors":[""],"Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}.":[""],"Support":["支援"],"404s":["404 錯誤"],"Log":["記錄"],"Delete Redirection":["刪除重新導向"],"Upload":["上傳"],"Import":["匯入"],"Update":["更新"],"Auto-generate URL":["自動產生網址"],"A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)":[""],"RSS Token":["RSS 動態金鑰"],"Monitor changes to posts":["監視變更的發表"],"404 Logs":["404 記錄"],"(time to keep logs for)":["(保留記錄時間)"],"Redirect Logs":["重新導向記錄"],"I'm a nice person and I have helped support the author of this plugin":["我是個熱心人,我已經贊助或支援外掛作者"],"Plugin Support":["外掛支援"],"Options":["選項"],"Two months":["兩個月"],"A month":["一個月"],"A week":["一週"],"A day":["一天"],"No logs":["不記錄"],"Delete All":["全部刪除"],"Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module.":[""],"Add Group":["新增群組"],"Search":["搜尋"],"Groups":["群組"],"Save":["儲存"],"Group":["群組"],"Match":["符合"],"Add new redirection":["新增重新導向"],"Cancel":["取消"],"Download":["下載"],"Redirection":["重新導向"],"Settings":["設定"],"Do nothing":["什麼也不做"],"Error (404)":["錯誤 (404)"],"Pass-through":["直接經由"],"Redirect to random post":["重新導向隨機發表"],"Redirect to URL":["重新導向至網址"],"Invalid group when creating redirect":[""],"Show only this IP":["僅顯示此 IP"],"IP":["IP"],"Source URL":["來源網址"],"Date":["日期"],"Add Redirect":["新增重新導向"],"All modules":["所有模組"],"View Redirects":["檢視重新導向"],"Module":["模組"],"Redirects":["重新導向"],"Name":["名稱"],"Filter":["篩選"],"Reset hits":["重設點擊"],"Enable":["啟用"],"Disable":["停用"],"Delete":["刪除"],"Edit":["編輯"],"Last Access":["最後存取"],"Hits":["點擊"],"URL":["網址"],"Type":["類型"],"Modified Posts":["特定發表"],"Redirections":["重新導向"],"User Agent":["使用者代理程式"],"URL and user agent":["網址與使用者代理程式"],"Target URL":["目標網址"],"URL only":["僅限網址"],"Regex":["正則表達式"],"Referrer":["引用頁"],"URL and referrer":["網址與引用頁"],"Logged Out":["已登出"],"Logged In":["已登入"],"URL and login status":["網址與登入狀態"]}
locale/redirection-ar_AR.mo DELETED
Binary file
locale/redirection-ar_AR.po DELETED
@@ -1,315 +0,0 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: Redirection 1.7.26\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2007-08-10 11:07+0800\n"
11
- "PO-Revision-Date: 2010-05-23 13:48+0200\n"
12
- "Last-Translator: Aiman <aiman@gim.co.il>\n"
13
- "Language-Team: Salim Jerry <jerrygo75@yahoo.com>\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
- "X-Poedit-KeywordsList: __;_e;__ ;_e\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-Language: Arabic\n"
21
- "X-Poedit-Country: UNITED ARAB EMIRATES\n"
22
-
23
- #: redirection/plugin.php:613
24
- msgid "How many widgets would you like?"
25
- msgstr "عدد الاضافات?"
26
-
27
- #: redirection/plugin.php:620
28
- #: redirection/view/admin/item_details.php:40
29
- msgid "Save"
30
- msgstr "احفظ"
31
-
32
- #: redirection/redirection.php:153
33
- msgid "Redirection"
34
- msgstr "توجيهات"
35
-
36
- #: redirection/redirection.php:253
37
- msgid "Your logs have been deleted"
38
- msgstr "لقد تم حذف السجلات"
39
-
40
- #: redirection/models/pager.php:382
41
- msgid "Previous"
42
- msgstr "الى الخلف"
43
-
44
- #: redirection/models/pager.php:383
45
- msgid "Next"
46
- msgstr "التالي"
47
-
48
- #: redirection/models/rss.php:15
49
- msgid "404 Report for: "
50
- msgstr "404 Report for: "
51
-
52
- #: redirection/redirectors/login.php:24
53
- msgid "Redirect based on login status"
54
- msgstr "Redirect based on login status"
55
-
56
- #: redirection/redirectors/login.php:32
57
- #: redirection/redirectors/login.php:34
58
- msgid "Logged in URL"
59
- msgstr "Logged in URL"
60
-
61
- #: redirection/redirectors/login.php:42
62
- #: redirection/redirectors/login.php:44
63
- msgid "Logged out URL"
64
- msgstr "Logged out URL"
65
-
66
- #: redirection/redirectors/login.php:49
67
- msgid "An empty URL means the source URL is not redirected when the user is logged in/logged out."
68
- msgstr "An empty URL means the source URL is not redirected when the user is logged in/logged out."
69
-
70
- #: redirection/redirectors/lucky_dip.php:26
71
- msgid "Redirect to a random WordPress post"
72
- msgstr "اعادة التوجيه لبوست عشوائي"
73
-
74
- #: redirection/redirectors/random_url.php:29
75
- msgid "Redirect to one of several URLs"
76
- msgstr "توجيه الى واحد من عناوينURL"
77
-
78
- #: redirection/redirectors/random_url.php:35
79
- #: redirection/redirectors/url.php:30
80
- #: redirection/view/admin/add.php:15
81
- #: redirection/view/admin/log_item_details.php:11
82
- msgid "Target URL"
83
- msgstr "URL هدف"
84
-
85
- #: redirection/redirectors/referrer.php:33
86
- msgid "Redirect based on referrer"
87
- msgstr "Redirect based on referrer"
88
-
89
- #: redirection/redirectors/referrer.php:39
90
- #: redirection/view/admin/404_item_details.php:13
91
- #: redirection/view/admin/404_item_details.php:15
92
- #: redirection/view/admin/log_item_details.php:21
93
- #: redirection/view/admin/log_item_details.php:23
94
- msgid "Referrer"
95
- msgstr "מפנה"
96
-
97
- #: redirection/redirectors/referrer.php:43
98
- msgid "Referrer Regex"
99
- msgstr "Referrer Regex"
100
-
101
- #: redirection/redirectors/referrer.php:49
102
- #: redirection/redirectors/referrer.php:51
103
- msgid "URL from referrer"
104
- msgstr "URL from referrer"
105
-
106
- #: redirection/redirectors/referrer.php:59
107
- #: redirection/redirectors/referrer.php:61
108
- msgid "Not from referrer"
109
- msgstr "Not from referrer"
110
-
111
- #: redirection/redirectors/referrer.php:66
112
- msgid "An empty URL means the source URL is not redirected."
113
- msgstr "المقصود URL خالي-URL الاصل لا يعتبر توجيه."
114
-
115
- #: redirection/redirectors/url.php:24
116
- msgid "Simple redirection"
117
- msgstr "توجيه بسيط"
118
-
119
- #: redirection/view/admin/404.php:5
120
- msgid "Redirection 404 Log"
121
- msgstr "Redirection 404 Log"
122
-
123
- #: redirection/view/admin/404.php:42
124
- msgid "You have no 404 logs!"
125
- msgstr "لا يوجد سجلات اخطاء 404."
126
-
127
- #: redirection/view/admin/404.php:54
128
- msgid "Delete All 404s"
129
- msgstr "حذف جميع 404"
130
-
131
- #: redirection/view/admin/404.php:55
132
- msgid "This will delete all logged 404 errors. Please be sure this is what you want to do."
133
- msgstr "هذه العملية قد تحذف جميع سجلات اخطاء 404.هل انت متأكد من الاستمرار؟"
134
-
135
- #: redirection/view/admin/404.php:57
136
- msgid "Are you sure?"
137
- msgstr "هل انت متأكد؟"
138
-
139
- #: redirection/view/admin/404_item.php:12
140
- msgid "Add redirection"
141
- msgstr "اضافة توجيه"
142
-
143
- #: redirection/view/admin/404_item.php:13
144
- #: redirection/view/admin/log_item.php:10
145
- #: redirection/view/admin/options.php:70
146
- msgid "Delete"
147
- msgstr "احذف"
148
-
149
- #: redirection/view/admin/404_item_details.php:3
150
- #: redirection/view/admin/log_item_details.php:3
151
- msgid "at"
152
- msgstr "عند"
153
-
154
- #: redirection/view/admin/404_item_details.php:7
155
- #: redirection/view/admin/add.php:11
156
- #: redirection/view/admin/item_details.php:6
157
- #: redirection/view/admin/log_item_details.php:7
158
- msgid "Source URL"
159
- msgstr "عنوان الاصل"
160
-
161
- #: redirection/view/admin/404_item_details.php:21
162
- #: redirection/view/admin/log_item_details.php:29
163
- msgid "User Agent"
164
- msgstr "User Agent"
165
-
166
- #: redirection/view/admin/404_item_details.php:25
167
- #: redirection/view/admin/log_item_details.php:33
168
- msgid "IP"
169
- msgstr "IP"
170
-
171
- #: redirection/view/admin/add.php:6
172
- msgid "Add new redirection"
173
- msgstr "اضافة توجيه"
174
-
175
- #: redirection/view/admin/add.php:19
176
- msgid "Type"
177
- msgstr "نمط"
178
-
179
- #: redirection/view/admin/add.php:26
180
- msgid "Method"
181
- msgstr "اسلوب"
182
-
183
- #: redirection/view/admin/add.php:33
184
- msgid "Pass-through"
185
- msgstr "Pass-through"
186
-
187
- #: redirection/view/admin/add.php:38
188
- #: redirection/view/admin/item_details.php:10
189
- msgid "Regex"
190
- msgstr "Regex"
191
-
192
- #: redirection/view/admin/add.php:43
193
- msgid "Add Redirection"
194
- msgstr "اضافة توجيه"
195
-
196
- #: redirection/view/admin/head.php:4
197
- msgid "Please wait..."
198
- msgstr "من فضلك انتظر....."
199
-
200
- #: redirection/view/admin/item.php:14
201
- msgid "Reset"
202
- msgstr "اعادة تعيين"
203
-
204
- #: redirection/view/admin/item_details.php:18
205
- #: redirection/view/admin/item_details.php:23
206
- #: redirection/view/admin/item_details.php:28
207
- msgid "Last User"
208
- msgstr "المستخدم الاخير"
209
-
210
- #: redirection/view/admin/item_details.php:34
211
- msgid "Open referrer"
212
- msgstr "توجيه مفتوح"
213
-
214
- #: redirection/view/admin/item_details.php:34
215
- msgid "Last Referrer"
216
- msgstr "التوجيه الاخير"
217
-
218
- #: redirection/view/admin/item_details.php:40
219
- msgid "Cancel"
220
- msgstr "الغي"
221
-
222
- #: redirection/view/admin/log.php:2
223
- msgid "Redirection Log"
224
- msgstr "سجلات التوجيهات"
225
-
226
- #: redirection/view/admin/log.php:40
227
- msgid "You have no logs!"
228
- msgstr "لا يوجد سجلات"
229
-
230
- #: redirection/view/admin/log.php:51
231
- msgid "Delete All Logs"
232
- msgstr "حذف جميع"
233
-
234
- #: redirection/view/admin/log_item_details.php:15
235
- msgid "Redirected by"
236
- msgstr "وجه بواسطة"
237
-
238
- #: redirection/view/admin/log_item_details.php:16
239
- msgid "for"
240
- msgstr "for"
241
-
242
- #: redirection/view/admin/options.php:2
243
- msgid "Options"
244
- msgstr "خصائص"
245
-
246
- #: redirection/view/admin/options.php:6
247
- msgid "Create 301 when post slug changes"
248
- msgstr "انتاج 301 عندما يكون slug البوست متغير"
249
-
250
- #: redirection/view/admin/options.php:10
251
- msgid "Redirect index.php/index.html"
252
- msgstr "وجه index.php/index.html"
253
-
254
- #: redirection/view/admin/options.php:14
255
- msgid "Root domain"
256
- msgstr "الملقم الاساسي"
257
-
258
- #: redirection/view/admin/options.php:17
259
- msgid "No"
260
- msgstr "لا"
261
-
262
- #: redirection/view/admin/options.php:18
263
- msgid "Strip www"
264
- msgstr "احذف www"
265
-
266
- #: redirection/view/admin/options.php:19
267
- msgid "Add www"
268
- msgstr "اضف www"
269
-
270
- #: redirection/view/admin/options.php:24
271
- msgid "Auto-generate URL"
272
- msgstr "انتاج بشكل تلقائي URL"
273
-
274
- #: redirection/view/admin/options.php:34
275
- msgid "Globally redirect unknown 404 errors"
276
- msgstr "اخطاء غير معروفة للتوجيهات الكلية من 404"
277
-
278
- #: redirection/view/admin/options.php:51
279
- msgid "Log 404 errors"
280
- msgstr "سجل خطأ 404"
281
-
282
- #: redirection/view/admin/options.php:55
283
- msgid "Check for updates"
284
- msgstr "افحص التحديثات"
285
-
286
- #: redirection/view/admin/options.php:60
287
- msgid "Update"
288
- msgstr "حدث"
289
-
290
- #: redirection/view/admin/pager.php:13
291
- msgid "Search"
292
- msgstr "بحث"
293
-
294
- #: redirection/view/admin/pager.php:16
295
- msgid "Per page"
296
- msgstr "لكل صفحة"
297
-
298
- #: redirection/view/admin/pager.php:19
299
- msgid "go"
300
- msgstr "نفذ"
301
-
302
- #: redirection/view/admin/redirections.php:2
303
- #, php-format
304
- msgid "%s Redirections"
305
- msgstr "%s Redirections"
306
-
307
- #: redirection/view/admin/redirections.php:40
308
- msgid "You have no redirections."
309
- msgstr "لا يوجد توجيهات"
310
-
311
- #: redirection/view/admin/version.php:5
312
- #, php-format
313
- msgid "%s ago"
314
- msgstr "%s ago"
315
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-be_BY.mo DELETED
Binary file
locale/redirection-be_BY.po DELETED
@@ -1,988 +0,0 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2009 Grib <grib69@gmail.com>
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: Redirection 2.1.20\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
10
- "POT-Creation-Date: 2011-07-17 10:14:58+00:00\n"
11
- "PO-Revision-Date: 2011-11-04 09:20+0200\n"
12
- "Language-Team: Web Geeks\n"
13
- "Last-Translator: \n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n"
18
- "X-Poedit-Language: Belarusian\n"
19
- "X-Poedit-Country: BELARUS\n"
20
-
21
- #: fileio/csv.php:21
22
- msgid "module_%d.csv"
23
- msgstr "module_%d.csv"
24
-
25
- #: fileio/xml.php:32
26
- msgid "module_%d.xml"
27
- msgstr "module_%d.xml"
28
-
29
- #: fileio/xml.php:105
30
- msgid "%s imported on %s at %s"
31
- msgstr "%s імпартавана %s у %s"
32
-
33
- #: fileio/xml.php:168
34
- msgid "XML importing is only available with PHP5 - you have PHP4."
35
- msgstr "Імпарт XML даступны толькі з PHP5, у вас усталяваны PHP4"
36
-
37
- #: view/admin/group_list.php:6
38
- msgid "Groups for module"
39
- msgstr "Групы для модуля"
40
-
41
- #: view/admin/group_list.php:16
42
- #: view/admin/log.php:38
43
- msgid "Module"
44
- msgstr "Модуль"
45
-
46
- #: view/admin/group_list.php:21
47
- #: view/admin/log.php:16
48
- #: view/admin/log.php:23
49
- #: view/admin/item_list.php:29
50
- msgid "Search"
51
- msgstr "Пошук"
52
-
53
- #: view/admin/group_list.php:26
54
- msgid "go"
55
- msgstr "наперад"
56
-
57
- #: view/admin/group_list.php:36
58
- #: view/admin/item_list.php:42
59
- #: view/admin/module_list.php:17
60
- msgid "Hits"
61
- msgstr "Лічыльнік"
62
-
63
- #: view/admin/group_list.php:37
64
- #: view/admin/group_list.php:100
65
- #: view/admin/module_edit.php:18
66
- #: view/admin/module_list.php:42
67
- #: view/admin/group_edit.php:6
68
- msgid "Name"
69
- msgstr "Назва"
70
-
71
- #: view/admin/group_list.php:59
72
- #: view/admin/item_list.php:67
73
- msgid "Select All"
74
- msgstr "Абраць усё"
75
-
76
- #: view/admin/group_list.php:60
77
- #: view/admin/item_list.php:68
78
- msgid "Toggle"
79
- msgstr "Вкл/Выкл"
80
-
81
- #: view/admin/group_list.php:61
82
- #: view/admin/item_list.php:69
83
- msgid "Reset Hits"
84
- msgstr "Абнуліць лічыльнік"
85
-
86
- #: view/admin/group_list.php:62
87
- #: view/admin/log.php:30
88
- #: view/admin/item_list.php:70
89
- #: view/admin/options.php:120
90
- msgid "Delete"
91
- msgstr "Выдаліць"
92
-
93
- #: view/admin/group_list.php:64
94
- #: view/admin/item_list.php:72
95
- msgid "Move To"
96
- msgstr "Перамясціць"
97
-
98
- #: view/admin/group_list.php:69
99
- #: view/admin/item_list.php:34
100
- #: view/admin/item_list.php:77
101
- msgid "Go"
102
- msgstr "Наперад"
103
-
104
- #: view/admin/group_list.php:75
105
- #: view/admin/item_list.php:83
106
- msgid "re-order"
107
- msgstr "памяняць месцамі"
108
-
109
- #: view/admin/group_list.php:76
110
- #: view/admin/item_list.php:84
111
- msgid "save order"
112
- msgstr "захаваць парадак"
113
-
114
- #: view/admin/group_list.php:89
115
- msgid "You have no groups in this module."
116
- msgstr "Няма груп у дадзеным модулі"
117
-
118
- #: view/admin/group_list.php:94
119
- msgid "Add Group"
120
- msgstr "Дадаць групу"
121
-
122
- #: view/admin/group_list.php:105
123
- msgid "Add"
124
- msgstr "Дадаць"
125
-
126
- #: view/admin/group_list.php:117
127
- #: view/admin/log.php:112
128
- #: view/admin/item_list.php:112
129
- #: redirection.php:116
130
- msgid "No items have been selected"
131
- msgstr "Нічога не абрана"
132
-
133
- #: view/admin/group_list.php:118
134
- #: view/admin/log.php:113
135
- #: view/admin/item_list.php:113
136
- #: redirection.php:115
137
- msgid "Are you sure?"
138
- msgstr "Вы ўпэўнены?"
139
-
140
- #: view/admin/submenu.php:6
141
- msgid "Redirects"
142
- msgstr "Перанакіраванні"
143
-
144
- #: view/admin/submenu.php:11
145
- #: view/admin/module_list.php:15
146
- msgid "Groups"
147
- msgstr "Групы"
148
-
149
- #: view/admin/submenu.php:16
150
- #: view/admin/module_list.php:6
151
- msgid "Modules"
152
- msgstr "Модулі"
153
-
154
- #: view/admin/submenu.php:21
155
- msgid "Log"
156
- msgstr "Часопіс"
157
-
158
- #: view/admin/submenu.php:26
159
- #: view/admin/options.php:6
160
- msgid "Options"
161
- msgstr "Налады"
162
-
163
- #: view/admin/submenu.php:31
164
- msgid "Support"
165
- msgstr "Падтрымка"
166
-
167
- #: view/admin/module_item.php:23
168
- msgid "View as"
169
- msgstr "Паглядзець як"
170
-
171
- #: view/admin/module_item.php:25
172
- msgid "CSV"
173
- msgstr "CSV"
174
-
175
- #: view/admin/module_item.php:26
176
- msgid "XML"
177
- msgstr "XML"
178
-
179
- #: view/admin/module_item.php:27
180
- #: models/module.php:160
181
- #: models/database.php:95
182
- msgid "Apache"
183
- msgstr "Apache"
184
-
185
- #: view/admin/module_item.php:28
186
- msgid "RSS"
187
- msgstr "RSS"
188
-
189
- #: view/admin/module_item.php:41
190
- msgid "edit"
191
- msgstr "кіраваць"
192
-
193
- #: view/admin/module_item.php:43
194
- msgid "delete"
195
- msgstr "выдаліць"
196
-
197
- #: view/admin/module_item.php:45
198
- msgid "reset"
199
- msgstr "скінуць"
200
-
201
- #: view/admin/log.php:6
202
- msgid "Redirection Log"
203
- msgstr "Часопіс перанакіраванняў"
204
-
205
- #: view/admin/log.php:29
206
- msgid "Bulk Actions"
207
- msgstr "Масавыя дзеянні"
208
-
209
- #: view/admin/log.php:33
210
- msgid "Apply"
211
- msgstr "Ужыць"
212
-
213
- #: view/admin/log.php:43
214
- #: view/admin/item_list.php:24
215
- #: view/admin/add.php:36
216
- msgid "Group"
217
- msgstr "Група"
218
-
219
- #: view/admin/log.php:49
220
- msgid "Filter"
221
- msgstr "Фільтр"
222
-
223
- #: view/admin/log.php:67
224
- msgid "Date"
225
- msgstr "Дата"
226
-
227
- #: view/admin/log.php:68
228
- #: view/admin/log_item_details.php:4
229
- #: view/admin/item_edit.php:15
230
- #: view/admin/add.php:12
231
- msgid "Source URL"
232
- msgstr "URL крыніцы"
233
-
234
- #: view/admin/log.php:69
235
- #: matches/referrer.php:40
236
- msgid "Referrer"
237
- msgstr "Реферер"
238
-
239
- #: view/admin/log.php:70
240
- msgid "IP"
241
- msgstr "IP"
242
-
243
- #: view/admin/log.php:85
244
- msgid "There are no logs to display!"
245
- msgstr "Часопісы адсутнічаюць!"
246
-
247
- #: view/admin/log.php:94
248
- msgid "Process Current Logs"
249
- msgstr "Дзеянні з бягучым часопісам"
250
-
251
- #: view/admin/log.php:95
252
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
253
- msgstr "Гэтыя дзеянні крануць усіх наяўных у наш час часопісаў (пошук па часопісе будзе абмежаваны)"
254
-
255
- #: view/admin/log.php:100
256
- msgid "Delete Logs"
257
- msgstr "Выдаліць часопісы"
258
-
259
- #: view/admin/item_list.php:7
260
- msgid "Redirections for group"
261
- msgstr "Перанакіраванне для групы"
262
-
263
- #: view/admin/item_list.php:41
264
- msgid "Last Access"
265
- msgstr "Апошні"
266
-
267
- #: view/admin/item_list.php:43
268
- #: view/admin/module_list.php:46
269
- msgid "Type"
270
- msgstr "Тып"
271
-
272
- #: view/admin/item_list.php:44
273
- msgid "URL"
274
- msgstr "URL"
275
-
276
- #: view/admin/item_list.php:44
277
- msgid "Position"
278
- msgstr "Сартаванне"
279
-
280
- #: view/admin/item_list.php:88
281
- msgid "You have no redirections."
282
- msgstr "Няма перанакіраванняў"
283
-
284
- #: view/admin/log_item_details.php:9
285
- msgid "Redirect to"
286
- msgstr "Перанакіраваць на"
287
-
288
- #: view/admin/log_item_details.php:15
289
- msgid "Redirected by"
290
- msgstr "Перанакіравана"
291
-
292
- #: view/admin/log_item_details.php:16
293
- msgid "for"
294
- msgstr "для"
295
-
296
- #: view/admin/log_item_details.php:20
297
- #: matches/user_agent.php:43
298
- msgid "User Agent"
299
- msgstr "User-Agent"
300
-
301
- #: view/admin/item.php:27
302
- #: view/admin/group_item.php:23
303
- msgid "disabled"
304
- msgstr "адключана"
305
-
306
- #: view/admin/item_edit.php:3
307
- msgid "%s by matching %s"
308
- msgstr "%s супастаўленне %s"
309
-
310
- #: view/admin/item_edit.php:7
311
- msgid "Title"
312
- msgstr "Назва"
313
-
314
- #: view/admin/item_edit.php:10
315
- msgid "optional"
316
- msgstr "не абавязкова"
317
-
318
- #: view/admin/item_edit.php:18
319
- #: matches/referrer.php:43
320
- msgid "Regex"
321
- msgstr "Рэгулярны выраз"
322
-
323
- #: view/admin/item_edit.php:27
324
- #: view/admin/module_edit.php:27
325
- #: view/admin/group_edit.php:20
326
- msgid "Save"
327
- msgstr "Захаваць"
328
-
329
- #: view/admin/item_edit.php:28
330
- #: view/admin/module_edit.php:28
331
- #: view/admin/group_edit.php:21
332
- msgid "Cancel"
333
- msgstr "Адмена"
334
-
335
- #: view/admin/add.php:3
336
- msgid "Add new redirection"
337
- msgstr "Дадаць новае перанакіраванне"
338
-
339
- #: view/admin/add.php:6
340
- msgid "Your redirection has been added."
341
- msgstr "Ваша правіла перанакіравання дададзена."
342
-
343
- #: view/admin/add.php:16
344
- msgid "Match"
345
- msgstr "Супадзенне"
346
-
347
- #: view/admin/add.php:22
348
- msgid "Action"
349
- msgstr "Дзеянне"
350
-
351
- #: view/admin/add.php:27
352
- msgid "Regular expression"
353
- msgstr "Рэгулярны выраз"
354
-
355
- #: view/admin/add.php:31
356
- #: matches/url.php:32
357
- msgid "Target URL"
358
- msgstr "URL прызначэнні"
359
-
360
- #: view/admin/add.php:43
361
- msgid "Add Redirection"
362
- msgstr "Дадаць перанакіраванне"
363
-
364
- #: view/admin/group_item.php:3
365
- msgid "edit group"
366
- msgstr "кіраваць групу"
367
-
368
- #: view/admin/module_list.php:14
369
- msgid "Details"
370
- msgstr "Дэталі"
371
-
372
- #: view/admin/module_list.php:16
373
- msgid "Items"
374
- msgstr "Элементы"
375
-
376
- #: view/admin/module_list.php:18
377
- msgid "Operations"
378
- msgstr "Дзеянні"
379
-
380
- #: view/admin/module_list.php:27
381
- msgid "Note: Hits are dependant on log entries"
382
- msgstr "Нататка: сведчанні лічыльніка залежаць ад запісаў у часопісе"
383
-
384
- #: view/admin/module_list.php:29
385
- msgid "You have no modules defined yet"
386
- msgstr "Вы не вызначылі модулі"
387
-
388
- #: view/admin/module_list.php:34
389
- msgid "Add Module"
390
- msgstr "Дадаць модуль"
391
-
392
- #: view/admin/module_list.php:35
393
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
394
- msgstr "Модуль уяўляе сабою элемент кіравання, які вызначае як апрацоўваюцца перанакіраванні. Элементы модуля WordPress апрацоўваюцца WordPress, элементы модуля Apache апрацоўваюцца файлам <code>.htaccess</code> і элементы модуля 404 уплываюць на журналяванне памылак 404"
395
-
396
- #: view/admin/module_list.php:55
397
- msgid "Create"
398
- msgstr "Стварыць"
399
-
400
- #: view/admin/support.php:5
401
- msgid "Redirection Support"
402
- msgstr "Падтрымка"
403
-
404
- #: view/admin/support.php:9
405
- msgid "Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>."
406
- msgstr "Гэта ўбудова абсалютна вольны для выкарыстання - жыццё выдатная і дзіўная! Тым не менш, ён патрабуе шмат часу і высілкаў у распрацоўцы і калі ён быў вам карысны, вы можаце падтрымаць яго далейшае развіццё, <strong>зрабіўшы невялікае ахвяраванне</strong>."
407
-
408
- #: view/admin/support.php:10
409
- msgid "This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins."
410
- msgstr "Гэта будзе для мяне стымулам працягваць займацца распрацоўкай дадзенай убудовы, марнаваць шмат часу на аказанне падтрымкі, у тым ліку на рэалізацыю новых прапанаваных магчымасцяў. Вы атрымліваеце новыя праграмы, а я працягваю гэтым займацца. Усё застаюцца ў выйгрышы."
411
-
412
- #: view/admin/support.php:13
413
- msgid "If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>."
414
- msgstr "Калі вы выкарыстоўваеце дадзеная ўбудова ў камерцыйных праектах ці лічыце, што ён быў вам асабліва карысны, то цалкам магчыма, што вы захочаце зрабіць <strong>камерцыйны ўнёсак</strong>."
415
-
416
- #: view/admin/support.php:36
417
- msgid "Individual<br/>Donation"
418
- msgstr "Індывідуальны<br/>унёсак"
419
-
420
- #: view/admin/support.php:56
421
- msgid "Commercial<br/>Donation"
422
- msgstr "Камерцыйны<br/>унёсак"
423
-
424
- #: view/admin/support.php:60
425
- msgid "Translations"
426
- msgstr "Перакладнікі"
427
-
428
- #: view/admin/support.php:62
429
- msgid "If you're multi-lingual then you may want to consider donating a translation:"
430
- msgstr "Калі вы валодаеце іншай мовай, вы можаце аказаць дапамогу, зрабіўшы пераклад:"
431
-
432
- #: view/admin/support.php:70
433
- msgid "All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter."
434
- msgstr "Усе перакладнікі атрымліваюць спасылку на свой сайт з хатняй старонкі ўбудовы на <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> і <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, а таксама маюць магчымасць атрымліваць індывідуальную падтрымку."
435
-
436
- #: view/admin/support.php:71
437
- msgid "Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
438
- msgstr "Поўную інфармацыю пра падрыхтоўку перакладу можна знайсці ў <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">кіраўніцтве па перакладзе ўбудоў для WordPress</a>."
439
-
440
- #: view/admin/options.php:15
441
- msgid "Auto-generate URL"
442
- msgstr "Аўтаматычная генерацыя URL"
443
-
444
- #: view/admin/options.php:19
445
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
446
- msgstr "Выкарыстоўваецца для аўтаматычнай генерацыі URL, калі URL не прадстаўлены. Вы можаце выкарыстоўваць адмысловыя тэгі $dec$ ці $hex$ для ўстаўкі ўнікальнага ID (дзесятковыя ці шаснаццатковыя)"
447
-
448
- #: view/admin/options.php:24
449
- msgid "IP Lookup Service"
450
- msgstr "Сэрвіс дазволу імёнаў па IP"
451
-
452
- #: view/admin/options.php:30
453
- msgid "Plugin Support"
454
- msgstr "Падтрымка ўбудовы"
455
-
456
- #: view/admin/options.php:33
457
- msgid "I'm a nice person and I have helped support the author of this plugin"
458
- msgstr "Я - добры чалавек і я падтрымаў аўтара дадзенай убудовы"
459
-
460
- #: view/admin/options.php:37
461
- msgid "Logging"
462
- msgstr "Часопіс"
463
-
464
- #: view/admin/options.php:40
465
- msgid "log redirected requests"
466
- msgstr "весці часопіс запытаў перанакіраванняў"
467
-
468
- #: view/admin/options.php:42
469
- msgid "log 404 Not Found requests"
470
- msgstr "весці часопіс запытаў 404"
471
-
472
- #: view/admin/options.php:43
473
- msgid "Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found."
474
- msgstr "Калі вашы перанакіраваныя URL наведваюцца вельмі часта і/ці ваш сайт вельмі загружаны і старонкі часта бываюць не знойдзены, зніміце сцяжок з адной ці абедзвюх гэтых опцый каб адключыць вядзенне часопіса і тым самым зменшыць загрузку базы дадзеных."
475
-
476
- #: view/admin/options.php:47
477
- msgid "Expire Logs"
478
- msgstr "Час жыцця часопіса"
479
-
480
- #: view/admin/options.php:50
481
- msgid "days (enter 0 for no expiry)"
482
- msgstr "дзён (увядзіце 0 для неабмежаванага часу)"
483
-
484
- #: view/admin/options.php:54
485
- msgid "RSS Token"
486
- msgstr "Токен RSS"
487
-
488
- #: view/admin/options.php:57
489
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
490
- msgstr "Унікальны радок для доступу да RSS фиду ўбудовы (пакіньце пусты для аўтаматычнай генерацыі)"
491
-
492
- #: view/admin/options.php:62
493
- msgid "URL Monitoring"
494
- msgstr "Адсочванне URL"
495
-
496
- #: view/admin/options.php:63
497
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
498
- msgstr "Вы можаце ўключыць сачэнне за зменай URL і аўтаматычна ствараць перанакіраванне ў вызначанай групе."
499
-
500
- #: view/admin/options.php:67
501
- msgid "Post &amp; Page URLs"
502
- msgstr "URL запісаў і старонак"
503
-
504
- #: view/admin/options.php:70
505
- #: view/admin/options.php:82
506
- msgid "Don't monitor"
507
- msgstr "Не адсочваць"
508
-
509
- #: view/admin/options.php:74
510
- msgid "Monitor new posts"
511
- msgstr "Адсочванне новых запісаў"
512
-
513
- #: view/admin/options.php:79
514
- msgid "Category URLs"
515
- msgstr "URL катэгорыі"
516
-
517
- #: view/admin/options.php:89
518
- msgid "Update"
519
- msgstr "Абнавіць"
520
-
521
- #: view/admin/options.php:95
522
- msgid "Import"
523
- msgstr "Імпарт"
524
-
525
- #: view/admin/options.php:97
526
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
527
- msgstr "Вы можаце імпартаваць правілы перанакіраванняў з існых .htaccess, CSV ці XML файлаў"
528
-
529
- #: view/admin/options.php:104
530
- msgid "Import into"
531
- msgstr "Імпартаваць у"
532
-
533
- #: view/admin/options.php:107
534
- msgid "Upload"
535
- msgstr "Загрузіць"
536
-
537
- #: view/admin/options.php:110
538
- msgid "Note that the group is ignored when uploading an XML file."
539
- msgstr "Нататка: група будзе праігнаравана пры загрузцы XML-файла."
540
-
541
- #: view/admin/options.php:114
542
- msgid "Delete Redirection"
543
- msgstr "Выдаліць убудову"
544
-
545
- #: view/admin/options.php:115
546
- msgid "Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do."
547
- msgstr "Выбар дадзенай опцыі выдаліць усе наладжаныя перанакіраванні, усе часопісы і ўсе іншыя налады, злучаныя з дадзенай убудовай. Пераканаецеся, што гэта менавіта тое, чаго вы жадаеце."
548
-
549
- #: view/admin/group_edit.php:10
550
- msgid "Tracked"
551
- msgstr "Сачэнне"
552
-
553
- #: view/admin/group_edit.php:11
554
- msgid "Whether to track 'hits' to items"
555
- msgstr "Адсочваць кол-у спрацоўванняў"
556
-
557
- #: view/admin/group_edit.php:14
558
- msgid "Enabled"
559
- msgstr "Уключана"
560
-
561
- #: view/admin/group_edit.php:15
562
- msgid "Disabling a group will disable all items contained within it"
563
- msgstr "Адключэнне групы прывядзе да адключэння ўсіх пунктаў, якія змяшчаюцца ў ёй"
564
-
565
- #: modules/404.php:37
566
- msgid "Log 404s"
567
- msgstr "Журналяванне 404"
568
-
569
- #: modules/404.php:46
570
- #: modules/wordpress.php:121
571
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
572
- msgstr "<strong>Адключана: Перад выкарыстаннем павінны быць уключаны <a href=\"options-permalink.php\">ЧПУ</a>"
573
-
574
- #: modules/404.php:57
575
- msgid "<small>No options have been set</small>"
576
- msgstr "<small>Няма наладжвальных параметраў</small>"
577
-
578
- #: modules/apache.php:77
579
- msgid "Location"
580
- msgstr "Размяшчэнне"
581
-
582
- #: modules/apache.php:82
583
- msgid "WordPress is installed in: <code>%s</code>"
584
- msgstr "WordPress усталяваны ў: <code>%s</code>"
585
-
586
- #: modules/apache.php:87
587
- msgid "Canonical"
588
- msgstr "Аснова"
589
-
590
- #: modules/apache.php:90
591
- #: modules/apache.php:96
592
- msgid "Leave as is"
593
- msgstr "Пакінуць як ёсць"
594
-
595
- #: modules/apache.php:90
596
- msgid "Strip WWW (%s)"
597
- msgstr "Выразаць WWW (%s)"
598
-
599
- #: modules/apache.php:90
600
- msgid "Force WWW (www.%s)"
601
- msgstr "Прымусова выкарыстоўваць WWW (www.%s)"
602
-
603
- #: modules/apache.php:94
604
- msgid "Strip Index"
605
- msgstr "Выдаленне індэксу"
606
-
607
- #: modules/apache.php:96
608
- msgid "Strip index files (html,php)"
609
- msgstr "Выдаліць файлы index (html,php) "
610
-
611
- #: modules/apache.php:101
612
- msgid "Memory Limit"
613
- msgstr "Ліміт памяці"
614
-
615
- #: modules/apache.php:104
616
- #: modules/apache.php:109
617
- msgid "Server default"
618
- msgstr "Налады сервера"
619
-
620
- #: modules/apache.php:107
621
- msgid "Error Level"
622
- msgstr "Узровень памылак"
623
-
624
- #: modules/apache.php:109
625
- msgid "No errors"
626
- msgstr "Без памылак"
627
-
628
- #: modules/apache.php:109
629
- msgid "Show errors"
630
- msgstr "Паказваць памылкі"
631
-
632
- #: modules/apache.php:114
633
- msgid "Ban IPs"
634
- msgstr "Блакаваць IP"
635
-
636
- #: modules/apache.php:120
637
- msgid "Allow IPs"
638
- msgstr "Дазволіць IP"
639
-
640
- #: modules/apache.php:126
641
- msgid "Raw .htaccess"
642
- msgstr "Неапрацаваны .htaccess"
643
-
644
- #: modules/apache.php:132
645
- msgid "Site URL"
646
- msgstr "URL сайта"
647
-
648
- #: modules/apache.php:135
649
- msgid "Advanced: For management of external sites"
650
- msgstr "Дадаткова: для кіравання вонкавымі сайтамі"
651
-
652
- #: modules/apache.php:150
653
- msgid "<strong>Location is invalid - check that path exists</strong>"
654
- msgstr "<strong>Няправільнае размяшчэнне - праверце што шлях існуе</strong>"
655
-
656
- #: modules/apache.php:156
657
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
658
- msgstr "<strong>Немагчыма запісаць файл <code>.htaccess</code> - праверце правы доступу</strong>"
659
-
660
- #: modules/apache.php:163
661
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
662
- msgstr "<strong>Адключана: пакажыце становішча файла <code>.htaccess</code> ці прывядзіце яго ў працоўны стан</strong>"
663
-
664
- #: modules/apache.php:168
665
- msgid "strip WWW"
666
- msgstr "выразаць WWW"
667
-
668
- #: modules/apache.php:168
669
- msgid "force WWW"
670
- msgstr "прымусова выкарыстоўваць WWW"
671
-
672
- #: modules/apache.php:171
673
- msgid "strip index"
674
- msgstr "выдаліць index"
675
-
676
- #: modules/apache.php:174
677
- msgid "memory limit at %dMB"
678
- msgstr "ліміт памяці %dMB"
679
-
680
- #: modules/apache.php:177
681
- msgid "no errors"
682
- msgstr "няма памылак"
683
-
684
- #: modules/apache.php:177
685
- msgid "show errors"
686
- msgstr "паказаць памылкі"
687
-
688
- #: modules/apache.php:180
689
- msgid "IPs are banned"
690
- msgstr "Забароненыя IP"
691
-
692
- #: modules/apache.php:183
693
- msgid "IPs are allowed"
694
- msgstr "Дазволеныя IP"
695
-
696
- #: models/redirect.php:386
697
- msgid "Redirect to URL"
698
- msgstr "Перанакіраваць на URL"
699
-
700
- #: models/redirect.php:387
701
- msgid "Redirect to random post"
702
- msgstr "Перанакіраваць на выпадковы запіс"
703
-
704
- #: models/redirect.php:388
705
- msgid "Pass-through"
706
- msgstr "Транзіт (pass-through)"
707
-
708
- #: models/redirect.php:389
709
- msgid "Error (404)"
710
- msgstr "Памылка 404"
711
-
712
- #: models/redirect.php:390
713
- msgid "Do nothing"
714
- msgstr "Нічога не рабіць"
715
-
716
- #: models/module.php:161
717
- #: models/database.php:94
718
- msgid "WordPress"
719
- msgstr "WordPress"
720
-
721
- #: models/module.php:162
722
- msgid "404 Errors"
723
- msgstr "Памылкі 404"
724
-
725
- #: models/module.php:187
726
- msgid "Strip WWW"
727
- msgstr "Выразаць WWW"
728
-
729
- #: models/module.php:187
730
- msgid "Force WWW"
731
- msgstr "Прымусова выкарыстоўваць WWW"
732
-
733
- #: models/module.php:192
734
- msgid "Strip index.php"
735
- msgstr "Выдаліць index.php"
736
-
737
- #: models/database.php:96
738
- msgid "404"
739
- msgstr "404"
740
-
741
- #: models/database.php:101
742
- msgid "Redirections"
743
- msgstr "Перанакіраванні"
744
-
745
- #: models/database.php:102
746
- msgid "Modified Posts"
747
- msgstr "Змененыя запісы"
748
-
749
- #: models/pager.php:404
750
- msgid "Previous"
751
- msgstr "Папярэдні"
752
-
753
- #: models/pager.php:405
754
- msgid "Next"
755
- msgstr "Наступны"
756
-
757
- #: models/pager.php:463
758
- msgid "%d per-page"
759
- msgstr "%d на старонку"
760
-
761
- #: models/pager.php:472
762
- msgid "Displaying %s&#8211;%s of %s"
763
- msgstr "Паказана %s&#8211;%s з %s"
764
-
765
- #: models/group.php:194
766
- msgid "Yes"
767
- msgstr "Так"
768
-
769
- #: models/group.php:195
770
- msgid "No"
771
- msgstr "Не"
772
-
773
- #: ajax.php:370
774
- msgid "Sorry, but your redirection was not created"
775
- msgstr "Выбачыце, перанакіраванне не было створана"
776
-
777
- #: redirection.php:94
778
- msgid "Settings"
779
- msgstr "Налады"
780
-
781
- #: redirection.php:112
782
- msgid "Please wait..."
783
- msgstr "Калі ласка пачакайце..."
784
-
785
- #. #-#-#-#-# plugin.pot (Redirection 2.2.5) #-#-#-#-#
786
- #. Plugin Name of the plugin/theme
787
- #: redirection.php:121
788
- msgid "Redirection"
789
- msgstr "Перанакіраванні"
790
-
791
- #: redirection.php:159
792
- msgid "Your module was successfully created"
793
- msgstr "Модуль паспяхова створаны"
794
-
795
- #: redirection.php:163
796
- msgid "Your module was not created - did you provide a name?"
797
- msgstr "Модуль не быў створаны - не паказалі імя?"
798
-
799
- #: redirection.php:228
800
- msgid "Your options were updated"
801
- msgstr "Вашы налады былі абноўлены"
802
-
803
- #: redirection.php:236
804
- msgid "Redirection data has been deleted and the plugin disabled"
805
- msgstr "Усе налады перанакіраванняў былі выдалены, а ўбудова адключаны"
806
-
807
- #: redirection.php:246
808
- msgid "%d redirection was successfully imported"
809
- msgid_plural "%d redirections were successfully imported"
810
- msgstr[0] "%d перанакіраванне было паспяхова імпартавана"
811
- msgstr[1] "%d перанакіраванні былі паспяхова імпартаваны"
812
-
813
- #: redirection.php:248
814
- msgid "No items were imported"
815
- msgstr "Нічога не імпартавана"
816
-
817
- #: redirection.php:266
818
- msgid "Your logs have been deleted"
819
- msgstr "Вашы часопісы былі выдалены"
820
-
821
- #: redirection.php:289
822
- msgid "Your group was added successfully"
823
- msgstr "Ваша група паспяхова дададзена"
824
-
825
- #: redirection.php:293
826
- msgid "Please specify a group name"
827
- msgstr "Калі ласка, вызначыце імя групы"
828
-
829
- #: redirection.php:330
830
- msgid "Redirection is available in"
831
- msgstr "Перанакіраванні даступныя ў"
832
-
833
- #: matches/url.php:25
834
- msgid "URL only"
835
- msgstr "Толькі URL"
836
-
837
- #: matches/url.php:40
838
- #: matches/user_agent.php:55
839
- #: matches/referrer.php:47
840
- msgid "HTTP Code"
841
- msgstr "Код HTTP"
842
-
843
- #: matches/login.php:25
844
- msgid "URL and login status"
845
- msgstr "URL і статут уваходу"
846
-
847
- #: matches/login.php:33
848
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
849
- msgstr "Будзе абраны адзін з наступных URL-адрасоў у залежнасці ад таго, увойдзе карыстач у сістэму ці няма. Калі пакінуць поле пустым - карыстач перанакіроўвацца не будзе."
850
-
851
- #: matches/login.php:39
852
- #: matches/login.php:41
853
- msgid "Logged In"
854
- msgstr "Залогинен"
855
-
856
- #: matches/login.php:51
857
- #: matches/login.php:53
858
- msgid "Logged Out"
859
- msgstr "Разлогинен"
860
-
861
- #: matches/user_agent.php:27
862
- msgid "URL and user agent"
863
- msgstr "URL і User-Agent"
864
-
865
- #: matches/user_agent.php:32
866
- msgid "FeedBurner"
867
- msgstr "FeedBurner"
868
-
869
- #: matches/user_agent.php:33
870
- msgid "Internet Explorer"
871
- msgstr "Internet Explorer"
872
-
873
- #: matches/user_agent.php:34
874
- msgid "FireFox"
875
- msgstr "FireFox"
876
-
877
- #: matches/user_agent.php:35
878
- msgid "Opera"
879
- msgstr "Opera"
880
-
881
- #: matches/user_agent.php:36
882
- msgid "Safari"
883
- msgstr "Safari"
884
-
885
- #: matches/user_agent.php:37
886
- msgid "iPhone"
887
- msgstr "iPhone"
888
-
889
- #: matches/user_agent.php:38
890
- msgid "Nintendo Wii"
891
- msgstr "Nintendo Wii"
892
-
893
- #: matches/user_agent.php:66
894
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
895
- msgstr "Наведвальнік будзе перанакіраваны пры супадзенні User-Agent. Вы можаце вызначыць розныя мэтавыя URL пры супадзенні ці не супадзенні. Калі пакінуць поле пустым, то наведвальнік нікуды перанакіроўвацца не будзе. <strong>Усе ўмовы ўводзяцца як рэгулярныя выразы</strong>.\n"
896
-
897
- #: matches/user_agent.php:73
898
- #: matches/user_agent.php:75
899
- #: matches/referrer.php:63
900
- #: matches/referrer.php:65
901
- msgid "Matched"
902
- msgstr "Супадаюць"
903
-
904
- #: matches/user_agent.php:83
905
- #: matches/user_agent.php:85
906
- #: matches/referrer.php:73
907
- #: matches/referrer.php:75
908
- msgid "Not matched"
909
- msgstr "Не супадаюць"
910
-
911
- #: matches/referrer.php:28
912
- msgid "URL and referrer"
913
- msgstr "URL і реферер"
914
-
915
- #: matches/referrer.php:57
916
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
917
- msgstr "Наведвальнік будзе перенапрвлен на URL крыніцы пры супадзенні реферера. Вы можаце вызначыць розныя мэтавыя URL пры супадзенні і не супадзенні. Калі пакінуць поле пустым, наведвальнік нікуды перанакіроўвацца не будзе."
918
-
919
- #. Plugin URI of the plugin/theme
920
- msgid "http://urbangiraffe.com/plugins/redirection/"
921
- msgstr "http://urbangiraffe.com/plugins/redirection/"
922
-
923
- #. Description of the plugin/theme
924
- msgid "Manage all your 301 redirects and monitor 404 errors"
925
- msgstr "Кіруйце ўсімі 301-перанакіраваннямі і адсочвайце памылкі 404"
926
-
927
- #. Author of the plugin/theme
928
- msgid "John Godley"
929
- msgstr "Джон Годли"
930
-
931
- #. Author URI of the plugin/theme
932
- msgid "http://urbangiraffe.com"
933
- msgstr "http://urbangiraffe.com"
934
-
935
- #~ msgid " for external site: <code>%s</code>"
936
- #~ msgstr " для вонкавага сайта: <code>%s</code>"
937
-
938
- #~ msgid "1 minute"
939
- #~ msgstr "1 хвіліна"
940
-
941
- #~ msgid "2 minutes"
942
- #~ msgstr "2 хвіліны"
943
-
944
- #~ msgid "30 seconds"
945
- #~ msgstr "30 секунд"
946
-
947
- #~ msgid "5 minutes"
948
- #~ msgstr "5 мінуць"
949
-
950
- #~ msgid "As long as possible"
951
- #~ msgstr "Як мага даўжэй"
952
-
953
- #~ msgid "Export to CSV"
954
- #~ msgstr "Экспарт у CSV"
955
-
956
- #~ msgid ""
957
- #~ "Please read the documentation and FAQ, and check the bug tracker, before "
958
- #~ "asking a question."
959
- #~ msgstr ""
960
- #~ "Калі ласка, прачытайце дакументацыю і FAQ, а таксама праверце памылку на "
961
- #~ "трэкеры, перш чым задаць пытанне."
962
-
963
- #~ msgid "Redirection Bug Tracker"
964
- #~ msgstr "Паведаміць пра памылкі"
965
-
966
- #~ msgid "Redirection Documentation"
967
- #~ msgstr "Дакументацыя па ўбудове"
968
-
969
- #~ msgid "Redirection FAQ"
970
- #~ msgstr "Часта задаваныя пытанні (FAQ)"
971
-
972
- #~ msgid "Redirection Help"
973
- #~ msgstr "Дапамога"
974
-
975
- #~ msgid "Redirection Support Forum"
976
- #~ msgstr "Форум падтрымкі"
977
-
978
- #~ msgid "Strip index files (html,php,asp)"
979
- #~ msgstr "Выдаліць файлы index (html,php,asp)"
980
-
981
- #~ msgid "Time Limit"
982
- #~ msgstr "Ліміт часу"
983
-
984
- #~ msgid "time limit at %ss"
985
- #~ msgstr "ліміт часу %ss"
986
-
987
- #~ msgid "time limit set as long as possible"
988
- #~ msgstr "ліміт часу ўсталяваны на максімальна магчымы"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-ca.mo DELETED
Binary file
locale/redirection-ca.po DELETED
@@ -1,782 +0,0 @@
1
- # Translation of Plugins - Redirection - Stable (latest release) in Catalan
2
- # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2017-07-06 21:35:14+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: ca\n"
12
- "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
-
14
- #: redirection-strings.php:141
15
- msgid "Something went wrong 🙁"
16
- msgstr ""
17
-
18
- #: redirection-strings.php:140
19
- msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!"
20
- msgstr ""
21
-
22
- #: redirection-strings.php:139
23
- msgid "It didn't work when I tried again"
24
- msgstr ""
25
-
26
- #: redirection-strings.php:138
27
- msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
- msgstr ""
29
-
30
- #: redirection-strings.php:137
31
- msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
- msgstr ""
33
-
34
- #: redirection-strings.php:136
35
- msgid "If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
- msgstr ""
37
-
38
- #: redirection-strings.php:135
39
- msgid "Important details for the thing you just did"
40
- msgstr ""
41
-
42
- #: redirection-strings.php:134
43
- msgid "Please include these details in your report"
44
- msgstr ""
45
-
46
- #: redirection-admin.php:180
47
- msgid "Log entries (100 max)"
48
- msgstr ""
49
-
50
- #: redirection-strings.php:56
51
- msgid "Failed to load"
52
- msgstr ""
53
-
54
- #: redirection-strings.php:48
55
- msgid "Remove WWW"
56
- msgstr ""
57
-
58
- #: redirection-strings.php:47
59
- msgid "Add WWW"
60
- msgstr ""
61
-
62
- #: redirection-strings.php:133
63
- msgid "Search by IP"
64
- msgstr ""
65
-
66
- #: redirection-strings.php:129
67
- msgid "Select bulk action"
68
- msgstr ""
69
-
70
- #: redirection-strings.php:128
71
- msgid "Bulk Actions"
72
- msgstr ""
73
-
74
- #: redirection-strings.php:127
75
- msgid "Apply"
76
- msgstr ""
77
-
78
- #: redirection-strings.php:126
79
- msgid "First page"
80
- msgstr ""
81
-
82
- #: redirection-strings.php:125
83
- msgid "Prev page"
84
- msgstr ""
85
-
86
- #: redirection-strings.php:124
87
- msgid "Current Page"
88
- msgstr ""
89
-
90
- #: redirection-strings.php:123
91
- msgid "of %(page)s"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:122
95
- msgid "Next page"
96
- msgstr ""
97
-
98
- #: redirection-strings.php:121
99
- msgid "Last page"
100
- msgstr ""
101
-
102
- #: redirection-strings.php:120
103
- msgid "%s item"
104
- msgid_plural "%s items"
105
- msgstr[0] ""
106
- msgstr[1] ""
107
-
108
- #: redirection-strings.php:119
109
- msgid "Select All"
110
- msgstr ""
111
-
112
- #: redirection-strings.php:131
113
- msgid "Sorry but something went wrong loading the data - please try again"
114
- msgstr ""
115
-
116
- #: redirection-strings.php:130
117
- msgid "No results"
118
- msgstr ""
119
-
120
- #: redirection-strings.php:26
121
- msgid "Delete the logs - are you sure?"
122
- msgstr ""
123
-
124
- #: redirection-strings.php:25
125
- msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
- msgstr ""
127
-
128
- #: redirection-strings.php:24
129
- msgid "Yes! Delete the logs"
130
- msgstr ""
131
-
132
- #: redirection-strings.php:23
133
- msgid "No! Don't delete the logs"
134
- msgstr ""
135
-
136
- #: redirection-admin.php:328
137
- msgid "Redirection 404"
138
- msgstr ""
139
-
140
- #: redirection-strings.php:116
141
- msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
- msgstr ""
143
-
144
- #: redirection-strings.php:115 redirection-strings.php:117
145
- msgid "Newsletter"
146
- msgstr ""
147
-
148
- #: redirection-strings.php:114
149
- msgid "Want to keep up to date with changes to Redirection?"
150
- msgstr ""
151
-
152
- #: redirection-strings.php:113
153
- msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
154
- msgstr ""
155
-
156
- #: redirection-strings.php:112
157
- msgid "Your email address:"
158
- msgstr ""
159
-
160
- #: redirection-strings.php:111
161
- msgid "I deleted a redirection, why is it still redirecting?"
162
- msgstr ""
163
-
164
- #: redirection-strings.php:110
165
- msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
- msgstr ""
167
-
168
- #: redirection-strings.php:109
169
- msgid "Can I open a redirect in a new tab?"
170
- msgstr ""
171
-
172
- #: redirection-strings.php:108
173
- msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
- msgstr ""
175
-
176
- #: redirection-strings.php:107
177
- msgid "Something isn't working!"
178
- msgstr ""
179
-
180
- #: redirection-strings.php:106
181
- msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
- msgstr ""
183
-
184
- #: redirection-strings.php:105
185
- msgid "Frequently Asked Questions"
186
- msgstr ""
187
-
188
- #: redirection-strings.php:104
189
- msgid "Need some help? Maybe one of these questions will provide an answer"
190
- msgstr ""
191
-
192
- #: redirection-strings.php:103
193
- msgid "You've already supported this plugin - thank you!"
194
- msgstr ""
195
-
196
- #: redirection-strings.php:102
197
- msgid "I'd like to donate some more"
198
- msgstr ""
199
-
200
- #: redirection-strings.php:100
201
- msgid "You get some useful software and I get to carry on making it better."
202
- msgstr ""
203
-
204
- #: redirection-strings.php:99
205
- msgid "Please note I do not provide support and this is just a donation."
206
- msgstr ""
207
-
208
- #: redirection-strings.php:98
209
- msgid "Yes I'd like to donate"
210
- msgstr ""
211
-
212
- #: redirection-strings.php:97
213
- msgid "Thank you for making a donation!"
214
- msgstr ""
215
-
216
- #: redirection-strings.php:91
217
- msgid "Forever"
218
- msgstr ""
219
-
220
- #: redirection-strings.php:88
221
- msgid "Failed to save data"
222
- msgstr ""
223
-
224
- #: redirection-strings.php:75
225
- msgid "Failed to load data"
226
- msgstr ""
227
-
228
- #: redirection-strings.php:71
229
- msgid "CSV Format"
230
- msgstr ""
231
-
232
- #: redirection-strings.php:70
233
- msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
- msgstr ""
235
-
236
- #: redirection-strings.php:67
237
- msgid "Delete the plugin - are you sure?"
238
- msgstr ""
239
-
240
- #: redirection-strings.php:66
241
- msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
242
- msgstr ""
243
-
244
- #: redirection-strings.php:65
245
- msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
- msgstr ""
247
-
248
- #: redirection-strings.php:64
249
- msgid "Yes! Delete the plugin"
250
- msgstr ""
251
-
252
- #: redirection-strings.php:63
253
- msgid "No! Don't delete the plugin"
254
- msgstr ""
255
-
256
- #: view/item-edit.php:35
257
- msgid "Advanced Settings"
258
- msgstr "Ajustos avançats"
259
-
260
- #. Author URI of the plugin/theme
261
- msgid "http://urbangiraffe.com"
262
- msgstr "http://urbangiraffe.com"
263
-
264
- #. Author of the plugin/theme
265
- msgid "John Godley"
266
- msgstr "John Godley"
267
-
268
- #. Description of the plugin/theme
269
- msgid "Manage all your 301 redirects and monitor 404 errors"
270
- msgstr ""
271
-
272
- #. Plugin URI of the plugin/theme
273
- msgid "http://urbangiraffe.com/plugins/redirection/"
274
- msgstr "http://urbangiraffe.com/plugins/redirection/"
275
-
276
- #: redirection-strings.php:101
277
- msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
278
- msgstr ""
279
-
280
- #: view/support.php:3
281
- msgid "Redirection Support"
282
- msgstr "Suport Tècnic de Redirecció"
283
-
284
- #: view/submenu.php:47
285
- msgid "Support"
286
- msgstr "Suport"
287
-
288
- #: view/submenu.php:34
289
- msgid "404s"
290
- msgstr "404s"
291
-
292
- #: view/submenu.php:32
293
- msgid "404s from %s"
294
- msgstr "404s des de %s"
295
-
296
- #: view/submenu.php:23
297
- msgid "Log"
298
- msgstr "Registres"
299
-
300
- #: redirection-strings.php:69
301
- msgid "Delete Redirection"
302
- msgstr "Eliminar Redirecció"
303
-
304
- #: redirection-strings.php:72
305
- msgid "Upload"
306
- msgstr "Pujar"
307
-
308
- #: redirection-strings.php:73
309
- msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
- msgstr ""
311
-
312
- #: redirection-strings.php:74
313
- msgid "Import"
314
- msgstr "Importar"
315
-
316
- #: redirection-strings.php:76
317
- msgid "Update"
318
- msgstr "Actualitzar"
319
-
320
- #: redirection-strings.php:77
321
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
- msgstr ""
323
-
324
- #: redirection-strings.php:78
325
- msgid "Auto-generate URL"
326
- msgstr "Autogenerar URL"
327
-
328
- #: redirection-strings.php:79
329
- msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
- msgstr ""
331
-
332
- #: redirection-strings.php:80
333
- msgid "RSS Token"
334
- msgstr "Token de RSS"
335
-
336
- #: redirection-strings.php:90
337
- msgid "Don't monitor"
338
- msgstr "No fer el seguiment"
339
-
340
- #: redirection-strings.php:81
341
- msgid "Monitor changes to posts"
342
- msgstr ""
343
-
344
- #: redirection-strings.php:83
345
- msgid "404 Logs"
346
- msgstr "Registres 404"
347
-
348
- #: redirection-strings.php:82 redirection-strings.php:84
349
- msgid "(time to keep logs for)"
350
- msgstr "(temps que es mantindran els registres)"
351
-
352
- #: redirection-strings.php:85
353
- msgid "Redirect Logs"
354
- msgstr "Registres de redireccions"
355
-
356
- #: redirection-strings.php:86
357
- msgid "I'm a nice person and I have helped support the author of this plugin"
358
- msgstr "Soc una bona persona i he ajudat a l'autor d'aquesta extensió"
359
-
360
- #: redirection-strings.php:87
361
- msgid "Plugin support"
362
- msgstr ""
363
-
364
- #: view/options.php:4 view/submenu.php:42
365
- msgid "Options"
366
- msgstr "Opcions"
367
-
368
- #: redirection-strings.php:92
369
- msgid "Two months"
370
- msgstr "Dos mesos"
371
-
372
- #: redirection-strings.php:93
373
- msgid "A month"
374
- msgstr "Un mes"
375
-
376
- #: redirection-strings.php:94
377
- msgid "A week"
378
- msgstr "Uns setmana"
379
-
380
- #: redirection-strings.php:95
381
- msgid "A day"
382
- msgstr "Un dia"
383
-
384
- #: redirection-strings.php:96
385
- msgid "No logs"
386
- msgstr "Sense registres"
387
-
388
- #: view/module-list.php:3 view/submenu.php:16
389
- msgid "Modules"
390
- msgstr "Mòduls"
391
-
392
- #: redirection-strings.php:28
393
- msgid "Export to CSV"
394
- msgstr ""
395
-
396
- #: redirection-strings.php:27
397
- msgid "Delete All"
398
- msgstr ""
399
-
400
- #: redirection-admin.php:322
401
- msgid "Redirection Log"
402
- msgstr "Registre de redireccions"
403
-
404
- #: view/item-edit.php:14
405
- msgid "optional"
406
- msgstr "opcional"
407
-
408
- #: view/item-edit.php:11
409
- msgid "Description"
410
- msgstr "Descripció"
411
-
412
- #: redirection-strings.php:5
413
- msgid "Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."
414
- msgstr ""
415
-
416
- #: redirection-strings.php:6
417
- msgid "Add Group"
418
- msgstr "Afegir grup"
419
-
420
- #: redirection-strings.php:132 view/item-list.php:10
421
- msgid "Search"
422
- msgstr "Cercar"
423
-
424
- #: view/group-list.php:3 view/submenu.php:11
425
- msgid "Groups"
426
- msgstr "Grups"
427
-
428
- #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
- msgid "Save"
430
- msgstr "Desar"
431
-
432
- #: view/add.php:46
433
- msgid "Add Redirection"
434
- msgstr "Afegir Redirecció"
435
-
436
- #: view/add.php:36 view/item-edit.php:18
437
- msgid "Group"
438
- msgstr "Grup"
439
-
440
- #: view/add.php:28
441
- msgid "Regular expression"
442
- msgstr "Expresió regular"
443
-
444
- #: view/add.php:23
445
- msgid "Action"
446
- msgstr "Acció"
447
-
448
- #: view/add.php:17
449
- msgid "Match"
450
- msgstr "Coincidència"
451
-
452
- #: view/add.php:7
453
- msgid "Your redirection has been added."
454
- msgstr "S'ha afegit la vostra redirecció"
455
-
456
- #: view/add.php:4
457
- msgid "Add new redirection"
458
- msgstr "Afegir una nova redirecció"
459
-
460
- #: redirection-strings.php:14 redirection-strings.php:44
461
- #: redirection-strings.php:54 view/item-edit.php:33
462
- msgid "Cancel"
463
- msgstr "Cancel·lar"
464
-
465
- #: redirection-strings.php:55
466
- msgid "Download"
467
- msgstr ""
468
-
469
- #: redirection-admin.php:407
470
- msgid "Sorry, but your redirection was not created"
471
- msgstr "Ho sento, però la vostra redirecció no ha estat creada"
472
-
473
- #: redirection-admin.php:344 redirection-admin.php:365
474
- #: redirection-admin.php:387
475
- msgid "Unable to perform action"
476
- msgstr "No s'ha pogut realitzar l'acció"
477
-
478
- #: redirection-admin.php:311
479
- msgid "No items were imported"
480
- msgstr "No s'han importat elements"
481
-
482
- #: redirection-admin.php:309
483
- msgid "%d redirection was successfully imported"
484
- msgid_plural "%d redirections were successfully imported"
485
- msgstr[0] "%d redirecció importada correctament"
486
- msgstr[1] "%d redireccions importades correctament"
487
-
488
- #: redirection-strings.php:89
489
- msgid "Your options were updated"
490
- msgstr "Les vostres opcions han estat actualitzades"
491
-
492
- #. Plugin Name of the plugin/theme
493
- msgid "Redirection"
494
- msgstr "Redirecció"
495
-
496
- #: redirection-admin.php:165
497
- msgid "Settings"
498
- msgstr "Configuració"
499
-
500
- #: redirection-strings.php:62
501
- msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
- msgstr ""
503
-
504
- #: redirection-strings.php:60
505
- msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
- msgstr ""
507
-
508
- #: redirection-strings.php:61
509
- msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
- msgstr ""
511
-
512
- #: redirection-strings.php:46
513
- msgid "Automatically remove or add www to your site."
514
- msgstr ""
515
-
516
- #: redirection-strings.php:49
517
- msgid "Default server"
518
- msgstr ""
519
-
520
- #: redirection-strings.php:50
521
- msgid "Canonical URL"
522
- msgstr "URL canònica"
523
-
524
- #: redirection-strings.php:51
525
- msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
- msgstr ""
527
-
528
- #: redirection-strings.php:52
529
- msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
- msgstr ""
531
-
532
- #: redirection-strings.php:53
533
- msgid ".htaccess Location"
534
- msgstr ""
535
-
536
- #: models/redirect.php:382
537
- msgid "Do nothing"
538
- msgstr "No fer res"
539
-
540
- #: models/redirect.php:381
541
- msgid "Error (404)"
542
- msgstr "Error (404)"
543
-
544
- #: models/redirect.php:380
545
- msgid "Pass-through"
546
- msgstr "Pasar directe"
547
-
548
- #: models/redirect.php:379
549
- msgid "Redirect to random post"
550
- msgstr "Redirigir a entrada aleatoria"
551
-
552
- #: models/redirect.php:378
553
- msgid "Redirect to URL"
554
- msgstr "Redirigir a URL"
555
-
556
- #: models/redirect.php:216
557
- msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
- msgstr ""
559
-
560
- #: models/redirect.php:178
561
- msgid "Invalid source URL when creating redirect for given match type"
562
- msgstr ""
563
-
564
- #: models/redirect.php:174
565
- msgid "Invalid group when creating redirect"
566
- msgstr ""
567
-
568
- #: models/redirect.php:166
569
- msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
- msgstr ""
571
-
572
- #: models/redirect.php:160
573
- msgid "Source and target URL must be different"
574
- msgstr ""
575
-
576
- #: redirection-strings.php:59
577
- msgid "Configure"
578
- msgstr ""
579
-
580
- #: redirection-strings.php:34 redirection-strings.php:41
581
- msgid "Show only this IP"
582
- msgstr "Mostra només aquesta IP"
583
-
584
- #: redirection-strings.php:30 redirection-strings.php:37
585
- msgid "IP"
586
- msgstr "IP"
587
-
588
- #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
- #: view/item-edit.php:4
590
- msgid "Source URL"
591
- msgstr "URL origen"
592
-
593
- #: redirection-strings.php:33 redirection-strings.php:40
594
- msgid "Date"
595
- msgstr "Data"
596
-
597
- #: redirection-strings.php:42
598
- msgid "Add Redirect"
599
- msgstr "Afegeix redirecció"
600
-
601
- #: redirection-strings.php:7
602
- msgid "All modules"
603
- msgstr "Tots els mòduls"
604
-
605
- #: redirection-strings.php:20
606
- msgid "View Redirects"
607
- msgstr ""
608
-
609
- #: redirection-strings.php:11 redirection-strings.php:16
610
- #: redirection-strings.php:58
611
- msgid "Module"
612
- msgstr "Mòdul"
613
-
614
- #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
- msgid "Redirects"
616
- msgstr "Redireccions"
617
-
618
- #: redirection-strings.php:4 redirection-strings.php:13
619
- #: redirection-strings.php:17
620
- msgid "Name"
621
- msgstr "Nom"
622
-
623
- #: models/pager.php:164 redirection-strings.php:118
624
- msgid "Filter"
625
- msgstr "Filtre"
626
-
627
- #: models/pager.php:151
628
- msgid "No group filter"
629
- msgstr "Sense filtre de grup"
630
-
631
- #: models/pager.php:104
632
- msgid "Reset Hits"
633
- msgstr "Reiniciar Hits"
634
-
635
- #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
- #: redirection-strings.php:18
637
- msgid "Enable"
638
- msgstr ""
639
-
640
- #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
- #: redirection-strings.php:19
642
- msgid "Disable"
643
- msgstr "Desactiva"
644
-
645
- #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
- #: redirection-strings.php:21 redirection-strings.php:29
647
- #: redirection-strings.php:35 redirection-strings.php:36
648
- #: redirection-strings.php:43 redirection-strings.php:68
649
- msgid "Delete"
650
- msgstr "Eliminar"
651
-
652
- #: models/pager.php:53 redirection-strings.php:22
653
- msgid "Edit"
654
- msgstr "Edita"
655
-
656
- #: models/pager.php:31
657
- msgid "Last Access"
658
- msgstr "Últim accés"
659
-
660
- #: models/pager.php:30
661
- msgid "Hits"
662
- msgstr "Hits"
663
-
664
- #: models/pager.php:29
665
- msgid "URL"
666
- msgstr "URL"
667
-
668
- #: models/pager.php:28
669
- msgid "Type"
670
- msgstr "Tipus"
671
-
672
- #: models/database.php:121
673
- msgid "Modified Posts"
674
- msgstr "Entrades modificades"
675
-
676
- #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
- msgid "Redirections"
678
- msgstr "Redireccions"
679
-
680
- #: matches/user-agent.php:51
681
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
- msgstr "El visitant serà redireccionat de l'URL origen si l'agente d'usuario conincideix. Podeu especificar una URL diferent si <em>coincideix</em> com la direcció a on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que no ho fagi. Si deixceu la URL buida el visitant no serà redireccionat.\n"
683
-
684
- #: matches/user-agent.php:25
685
- msgid "User Agent"
686
- msgstr "Agent d'usuari"
687
-
688
- #: matches/user-agent.php:20
689
- msgid "Nintendo Wii"
690
- msgstr "Nintendo Wii"
691
-
692
- #: matches/user-agent.php:19
693
- msgid "Android"
694
- msgstr "Android"
695
-
696
- #: matches/user-agent.php:18
697
- msgid "iPad"
698
- msgstr "iPad"
699
-
700
- #: matches/user-agent.php:17
701
- msgid "iPhone"
702
- msgstr "iPhone"
703
-
704
- #: matches/user-agent.php:16
705
- msgid "Safari"
706
- msgstr "Safari"
707
-
708
- #: matches/user-agent.php:15
709
- msgid "Opera"
710
- msgstr "Opera"
711
-
712
- #: matches/user-agent.php:14
713
- msgid "FireFox"
714
- msgstr "FireFox"
715
-
716
- #: matches/user-agent.php:13
717
- msgid "Internet Explorer"
718
- msgstr "Internet Explorer"
719
-
720
- #: matches/user-agent.php:12
721
- msgid "FeedBurner"
722
- msgstr "FeedBurner"
723
-
724
- #: matches/user-agent.php:7
725
- msgid "URL and user agent"
726
- msgstr "URL i agent d'usuari"
727
-
728
- #: matches/url.php:12 view/add.php:32
729
- msgid "Target URL"
730
- msgstr "URL destí"
731
-
732
- #: matches/url.php:5
733
- msgid "URL only"
734
- msgstr "Solament URL"
735
-
736
- #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
- #: matches/user-agent.php:70
738
- msgid "Not matched"
739
- msgstr "No coincideix"
740
-
741
- #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
- #: matches/user-agent.php:60
743
- msgid "Matched"
744
- msgstr "Coincideix"
745
-
746
- #: matches/referrer.php:40
747
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
- msgstr "El visitant serà redireccionat de la URL origen si el referent coincideix. Podeu especificar una URL destí si <em>coincideix</em> com la direcció on enviar els visitants en cas de coincidència, i <em>no coincideix</em> en cas de que ho fagi. Si deixeu la URL buida el visitant no serà redireccionat."
749
-
750
- #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
- #: matches/user-agent.php:38
752
- msgid "HTTP Code"
753
- msgstr "Codi HTTP"
754
-
755
- #: matches/referrer.php:24 view/item-edit.php:7
756
- msgid "Regex"
757
- msgstr "Expresió regular"
758
-
759
- #: matches/referrer.php:21 redirection-strings.php:31
760
- #: redirection-strings.php:38
761
- msgid "Referrer"
762
- msgstr "Referent"
763
-
764
- #: matches/referrer.php:8
765
- msgid "URL and referrer"
766
- msgstr "URL i referent"
767
-
768
- #: matches/login.php:35 matches/login.php:37
769
- msgid "Logged Out"
770
- msgstr "Desconnectat"
771
-
772
- #: matches/login.php:23 matches/login.php:25
773
- msgid "Logged In"
774
- msgstr "Identificat"
775
-
776
- #: matches/login.php:16
777
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
- msgstr "La URL destí serà triada entre les següents URL, depenent si l'usuari es troba validat o no. Si deixeu la URL buida l'usuari no serà redireccionat."
779
-
780
- #: matches/login.php:7
781
- msgid "URL and login status"
782
- msgstr "Estat de l'URL i connexió"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-cs_CZ.mo DELETED
Binary file
locale/redirection-cs_CZ.po DELETED
@@ -1,1135 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Redirection 2.2.5\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
5
- "POT-Creation-Date: 2011-07-17 10:14:58+00:00\n"
6
- "PO-Revision-Date: 2011-08-18 13:24+0100\n"
7
- "Last-Translator: Martin Jurica <martin@jurica.info>\n"
8
- "Language-Team: Martin Jurica <martin@jurica.info>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-SourceCharset: utf-8\n"
14
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Textdomain-Support: yes\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #@ redirection
20
- #: fileio/csv.php:21
21
- #, php-format
22
- msgid "module_%d.csv"
23
- msgstr "module_%d.csv"
24
-
25
- #@ redirection
26
- #: fileio/xml.php:32
27
- #, php-format
28
- msgid "module_%d.xml"
29
- msgstr "module_%d.xml"
30
-
31
- #@ redirection
32
- #: fileio/xml.php:105
33
- #, php-format
34
- msgid "%s imported on %s at %s"
35
- msgstr "%s importován z %s na %s"
36
-
37
- #@ redirection
38
- #: fileio/xml.php:168
39
- msgid "XML importing is only available with PHP5 - you have PHP4."
40
- msgstr "XML import je k dispozici pouze v PHP5 - používáte bohužel PHP4."
41
-
42
- #@ redirection
43
- #: view/admin/group_list.php:6
44
- msgid "Groups for module"
45
- msgstr "Skupiny modulu"
46
-
47
- #@ redirection
48
- #: view/admin/group_list.php:16
49
- #: view/admin/log.php:38
50
- msgid "Module"
51
- msgstr "Modul"
52
-
53
- #@ redirection
54
- #: view/admin/group_list.php:21
55
- #: view/admin/item_list.php:29
56
- #: view/admin/log.php:16
57
- #: view/admin/log.php:23
58
- msgid "Search"
59
- msgstr "Hledat"
60
-
61
- #@ redirection
62
- #: view/admin/group_list.php:26
63
- msgid "go"
64
- msgstr "go"
65
-
66
- #@ redirection
67
- #: view/admin/group_list.php:36
68
- #: view/admin/item_list.php:42
69
- #: view/admin/module_list.php:17
70
- msgid "Hits"
71
- msgstr "Zobrazení"
72
-
73
- #@ redirection
74
- #: view/admin/group_edit.php:6
75
- #: view/admin/group_list.php:37
76
- #: view/admin/group_list.php:100
77
- #: view/admin/module_edit.php:18
78
- #: view/admin/module_list.php:42
79
- msgid "Name"
80
- msgstr "Jméno"
81
-
82
- #@ redirection
83
- #: view/admin/group_list.php:59
84
- #: view/admin/item_list.php:67
85
- msgid "Select All"
86
- msgstr "Vybrat vše"
87
-
88
- #@ redirection
89
- #: view/admin/group_list.php:60
90
- #: view/admin/item_list.php:68
91
- msgid "Toggle"
92
- msgstr "Povolit/Zakázat"
93
-
94
- #@ redirection
95
- #: view/admin/group_list.php:61
96
- #: view/admin/item_list.php:69
97
- msgid "Reset Hits"
98
- msgstr "Vynulovat počet zobrazení"
99
-
100
- #@ redirection
101
- #@ default
102
- #: view/admin/group_list.php:62
103
- #: view/admin/item_list.php:70
104
- #: view/admin/log.php:30
105
- #: view/admin/options.php:120
106
- msgid "Delete"
107
- msgstr "Odstranit"
108
-
109
- #@ redirection
110
- #: view/admin/group_list.php:64
111
- #: view/admin/item_list.php:72
112
- msgid "Move To"
113
- msgstr "Přesunout do"
114
-
115
- #@ redirection
116
- #: view/admin/group_list.php:69
117
- #: view/admin/item_list.php:34
118
- #: view/admin/item_list.php:77
119
- msgid "Go"
120
- msgstr "Go"
121
-
122
- #@ redirection
123
- #: view/admin/group_list.php:75
124
- #: view/admin/item_list.php:83
125
- msgid "re-order"
126
- msgstr "přeuspořádat"
127
-
128
- #@ redirection
129
- #: view/admin/group_list.php:76
130
- #: view/admin/item_list.php:84
131
- msgid "save order"
132
- msgstr "uložit pořadí"
133
-
134
- #@ redirection
135
- #: view/admin/group_list.php:89
136
- msgid "You have no groups in this module."
137
- msgstr "Tento modul neobsahuje žádné skupiny."
138
-
139
- #@ redirection
140
- #: view/admin/group_list.php:94
141
- msgid "Add Group"
142
- msgstr "Přidat skupinu"
143
-
144
- #@ redirection
145
- #: view/admin/group_list.php:105
146
- msgid "Add"
147
- msgstr "Přidat"
148
-
149
- #@ redirection
150
- #: redirection.php:116
151
- #: view/admin/group_list.php:117
152
- #: view/admin/item_list.php:112
153
- #: view/admin/log.php:112
154
- msgid "No items have been selected"
155
- msgstr "Nebyly vybrány žádné položky"
156
-
157
- #@ redirection
158
- #: redirection.php:115
159
- #: view/admin/group_list.php:118
160
- #: view/admin/item_list.php:113
161
- #: view/admin/log.php:113
162
- msgid "Are you sure?"
163
- msgstr "Opravdu?"
164
-
165
- #@ redirection
166
- #: view/admin/submenu.php:6
167
- msgid "Redirects"
168
- msgstr "Přesměrování"
169
-
170
- #@ redirection
171
- #: view/admin/module_list.php:15
172
- #: view/admin/submenu.php:11
173
- msgid "Groups"
174
- msgstr "Skupiny"
175
-
176
- #@ redirection
177
- #: view/admin/module_list.php:6
178
- #: view/admin/submenu.php:16
179
- msgid "Modules"
180
- msgstr "Moduly"
181
-
182
- #@ redirection
183
- #: view/admin/submenu.php:21
184
- msgid "Log"
185
- msgstr "Log"
186
-
187
- #@ redirection
188
- #: view/admin/options.php:6
189
- #: view/admin/submenu.php:26
190
- msgid "Options"
191
- msgstr "Nastavení"
192
-
193
- #@ redirection
194
- #: view/admin/submenu.php:31
195
- msgid "Support"
196
- msgstr "Podpora"
197
-
198
- #@ redirection
199
- #: view/admin/module_item.php:23
200
- msgid "View as"
201
- msgstr "Zobrazit jako"
202
-
203
- #@ redirection
204
- #: view/admin/module_item.php:25
205
- msgid "CSV"
206
- msgstr "CSV"
207
-
208
- #@ redirection
209
- #: view/admin/module_item.php:26
210
- msgid "XML"
211
- msgstr "XML"
212
-
213
- #@ redirection
214
- #: models/database.php:95
215
- #: models/module.php:160
216
- #: view/admin/module_item.php:27
217
- msgid "Apache"
218
- msgstr "Apache"
219
-
220
- #@ redirection
221
- #: view/admin/module_item.php:28
222
- msgid "RSS"
223
- msgstr "RSS"
224
-
225
- #@ redirection
226
- #: view/admin/module_item.php:41
227
- msgid "edit"
228
- msgstr "upravit"
229
-
230
- #@ redirection
231
- #: view/admin/module_item.php:43
232
- msgid "delete"
233
- msgstr "odstranit"
234
-
235
- #@ redirection
236
- #: view/admin/module_item.php:45
237
- msgid "reset"
238
- msgstr "reset"
239
-
240
- #@ redirection
241
- #: view/admin/log.php:6
242
- msgid "Redirection Log"
243
- msgstr "Logy přesměrování"
244
-
245
- #@ default
246
- #: view/admin/log.php:29
247
- msgid "Bulk Actions"
248
- msgstr "Hromadné akce"
249
-
250
- #@ default
251
- #: view/admin/log.php:33
252
- msgid "Apply"
253
- msgstr "Použít"
254
-
255
- #@ redirection
256
- #: view/admin/add.php:36
257
- #: view/admin/item_list.php:24
258
- #: view/admin/log.php:43
259
- msgid "Group"
260
- msgstr "Skupina"
261
-
262
- #@ default
263
- #: view/admin/log.php:49
264
- msgid "Filter"
265
- msgstr "Filtr"
266
-
267
- #@ redirection
268
- #: view/admin/log.php:67
269
- msgid "Date"
270
- msgstr "Datum"
271
-
272
- #@ redirection
273
- #: view/admin/add.php:12
274
- #: view/admin/item_edit.php:15
275
- #: view/admin/log.php:68
276
- #: view/admin/log_item_details.php:4
277
- msgid "Source URL"
278
- msgstr "Zdrojová URL"
279
-
280
- #@ redirection
281
- #: matches/referrer.php:40
282
- #: view/admin/log.php:69
283
- msgid "Referrer"
284
- msgstr "Referrer"
285
-
286
- #@ redirection
287
- #: view/admin/log.php:70
288
- msgid "IP"
289
- msgstr "IP"
290
-
291
- #@ redirection
292
- #: view/admin/log.php:85
293
- msgid "There are no logs to display!"
294
- msgstr "Není k dispozici žádný log pro zobrazení!"
295
-
296
- #@ redirection
297
- #: view/admin/log.php:94
298
- msgid "Process Current Logs"
299
- msgstr "Operace s aktuálními logy"
300
-
301
- #@ redirection
302
- #: view/admin/log.php:95
303
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
304
- msgstr "Tyto akce budou mít vliv na všechny logy, které jsou k dispozici (pomocí vyhledávání můžete omezit rozsah zpracovaných logů)."
305
-
306
- #@ redirection
307
- #: view/admin/log.php:100
308
- msgid "Delete Logs"
309
- msgstr "Smazat logy"
310
-
311
- #@ redirection
312
- #: view/admin/item_list.php:7
313
- msgid "Redirections for group"
314
- msgstr "Přesměrování pro skupinu"
315
-
316
- #@ redirection
317
- #: view/admin/item_list.php:41
318
- msgid "Last Access"
319
- msgstr "Poslední přístup"
320
-
321
- #@ redirection
322
- #: view/admin/item_list.php:43
323
- #: view/admin/module_list.php:46
324
- msgid "Type"
325
- msgstr "Typ"
326
-
327
- #@ redirection
328
- #: view/admin/item_list.php:44
329
- msgid "URL"
330
- msgstr "URL"
331
-
332
- #@ redirection
333
- #: view/admin/item_list.php:44
334
- msgid "Position"
335
- msgstr "Pozice"
336
-
337
- #@ redirection
338
- #: view/admin/item_list.php:88
339
- msgid "You have no redirections."
340
- msgstr "Neexistuje žádné přesměrování."
341
-
342
- #@ redirection
343
- #: view/admin/log_item_details.php:9
344
- msgid "Redirect to"
345
- msgstr "Přesměrovat na"
346
-
347
- #@ redirection
348
- #: view/admin/log_item_details.php:15
349
- msgid "Redirected by"
350
- msgstr "Přesměrováno dle"
351
-
352
- #@ redirection
353
- #: view/admin/log_item_details.php:16
354
- msgid "for"
355
- msgstr "pro"
356
-
357
- #@ redirection
358
- #: matches/user_agent.php:43
359
- #: view/admin/log_item_details.php:20
360
- msgid "User Agent"
361
- msgstr "User Agent"
362
-
363
- #@ redirection
364
- #: view/admin/group_item.php:23
365
- #: view/admin/item.php:27
366
- msgid "disabled"
367
- msgstr "zakázáno"
368
-
369
- #@ redirection
370
- #: view/admin/item_edit.php:3
371
- #, php-format
372
- msgid "%s by matching %s"
373
- msgstr "%s odpovídá %s"
374
-
375
- #@ redirection
376
- #: view/admin/item_edit.php:7
377
- msgid "Title"
378
- msgstr "Nadpis"
379
-
380
- #@ redirection
381
- #: view/admin/item_edit.php:10
382
- msgid "optional"
383
- msgstr "volitelný"
384
-
385
- #@ redirection
386
- #: matches/referrer.php:43
387
- #: view/admin/item_edit.php:18
388
- msgid "Regex"
389
- msgstr "Regex"
390
-
391
- #@ redirection
392
- #: view/admin/group_edit.php:20
393
- #: view/admin/item_edit.php:27
394
- #: view/admin/module_edit.php:27
395
- msgid "Save"
396
- msgstr "Uložit"
397
-
398
- #@ redirection
399
- #: view/admin/group_edit.php:21
400
- #: view/admin/item_edit.php:28
401
- #: view/admin/module_edit.php:28
402
- msgid "Cancel"
403
- msgstr "Zrušit"
404
-
405
- #@ redirection
406
- #: view/admin/add.php:3
407
- msgid "Add new redirection"
408
- msgstr "Přidat nové přesměrování"
409
-
410
- #@ redirection
411
- #: view/admin/add.php:6
412
- msgid "Your redirection has been added."
413
- msgstr "Přesměrování bylo přidáno."
414
-
415
- #@ redirection
416
- #: view/admin/add.php:16
417
- msgid "Match"
418
- msgstr "Shoda"
419
-
420
- #@ redirection
421
- #: view/admin/add.php:22
422
- msgid "Action"
423
- msgstr "Akce"
424
-
425
- #@ redirection
426
- #: view/admin/add.php:27
427
- msgid "Regular expression"
428
- msgstr "Regulární výraz"
429
-
430
- #@ redirection
431
- #: matches/url.php:32
432
- #: view/admin/add.php:31
433
- msgid "Target URL"
434
- msgstr "Cílová URL"
435
-
436
- #@ redirection
437
- #: view/admin/add.php:43
438
- msgid "Add Redirection"
439
- msgstr "Přidat přesměrování"
440
-
441
- #@ redirection
442
- #: view/admin/group_item.php:3
443
- msgid "edit group"
444
- msgstr "upravit skupinu"
445
-
446
- #@ redirection
447
- #: view/admin/module_list.php:14
448
- msgid "Details"
449
- msgstr "Podrobnosti"
450
-
451
- #@ redirection
452
- #: view/admin/module_list.php:16
453
- msgid "Items"
454
- msgstr "Položky"
455
-
456
- #@ redirection
457
- #: view/admin/module_list.php:18
458
- msgid "Operations"
459
- msgstr "Operace"
460
-
461
- #@ redirection
462
- #: view/admin/module_list.php:27
463
- msgid "Note: Hits are dependant on log entries"
464
- msgstr "Poznámka: Počet zobrazení je vypočítán ze záznamů v logu"
465
-
466
- #@ redirection
467
- #: view/admin/module_list.php:29
468
- msgid "You have no modules defined yet"
469
- msgstr "Žádné moduly nebyly dosud definovány"
470
-
471
- #@ redirection
472
- #: view/admin/module_list.php:34
473
- msgid "Add Module"
474
- msgstr "Přidat modul"
475
-
476
- #@ redirection
477
- #: view/admin/module_list.php:35
478
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
479
- msgstr "Modul je kontrolní prvek, který určuje, jakým způsobem jsou zpracovávány přesměrování. Záznamy v modulu WordPress jsou zpracovány WordPressem, záznamy v modulu Apache zpracovává <code>.htaccess</code>, a záznamy v modulu 404 ovlivní, jak budou zalogovány chyby 404."
480
-
481
- #@ redirection
482
- #: view/admin/module_list.php:55
483
- msgid "Create"
484
- msgstr "Vytvořit"
485
-
486
- #@ redirection
487
- #: view/admin/support.php:5
488
- msgid "Redirection Support"
489
- msgstr "Podpora pro Redirection"
490
-
491
- #@ redirection
492
- #: view/admin/support.php:9
493
- msgid "Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>."
494
- msgstr "Plugin Redirection je šířen zdarma - život je krásný, autor vás má rád! Nicméně, vývoj vyžaduje hodně času a úsilí... Pokud vám tento plugin připadá užitečný, neostýchejte se podpořit jeho vývoj <strong>drobným příspěvkem.</strong>"
495
-
496
- #@ redirection
497
- #: view/admin/support.php:10
498
- msgid "This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins."
499
- msgstr "Drobnou dotací nejen přispějete na další vývoj, ale dáte mi také najevo, že tento plugin má smysl a mám pokračovat v jeho vývoji, podpoře vás, uživatelů, a v přidávání dalších skvělých funkcí. Vy tak získáte užitečný software a já povzbuzení do další práce. A to za to stojí, nemyslíte?"
500
-
501
- #@ redirection
502
- #: view/admin/support.php:13
503
- msgid "If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>."
504
- msgstr "Používáte-li tento plugin ve firemní sféře, nebo máte pocit, že je extrémně užitečný, pak byste možná mohli zvážit <strong>výraznější dotaci za komerční využití.</strong>"
505
-
506
- #@ redirection
507
- #: view/admin/support.php:36
508
- msgid "Individual<br/>Donation"
509
- msgstr "Individuální<br/>příspěvek"
510
-
511
- #@ redirection
512
- #: view/admin/support.php:56
513
- msgid "Commercial<br/>Donation"
514
- msgstr "Komerční<br/>příspěvek"
515
-
516
- #@ redirection
517
- #: view/admin/support.php:60
518
- msgid "Translations"
519
- msgstr "Překlady"
520
-
521
- #@ redirection
522
- #: view/admin/support.php:62
523
- msgid "If you're multi-lingual then you may want to consider donating a translation:"
524
- msgstr "Pokud hovoříte více jazyky, můžete podpořit další vývoj pluginu jeho přeložením například do těchto jazyků:"
525
-
526
- #@ redirection
527
- #: view/admin/support.php:70
528
- msgid "All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter."
529
- msgstr "Všichni překladatelé získají odkaz na své webové stránky na domovské stránce pluginu <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>. A pochopitelně dobrý pocit z přispění komunitě."
530
-
531
- #@ redirection
532
- #: view/admin/support.php:71
533
- msgid "Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
534
- msgstr "Kompletní postup pro překládání je k dispozici v podobě <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">příručky pro překlad WordPress pluginů</a> ."
535
-
536
- #@ redirection
537
- #: view/admin/options.php:15
538
- msgid "Auto-generate URL"
539
- msgstr "Automatické generování URL"
540
-
541
- #@ redirection
542
- #: view/admin/options.php:19
543
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
544
- msgstr "Tato volba je použita pro automatické generování URL v případě, kdy není URL specifikována. Je možné použít speciální tagy $dec$ nebo $hex$ pro vložení unikátního ID do URL (dec - dekadický, hex - šestnáctkový)"
545
-
546
- #@ redirection
547
- #: view/admin/options.php:24
548
- msgid "IP Lookup Service"
549
- msgstr "Služba pro vyhledávání dle IP"
550
-
551
- #@ redirection
552
- #: view/admin/options.php:30
553
- msgid "Plugin Support"
554
- msgstr "Podpora pluginu"
555
-
556
- #@ redirection
557
- #: view/admin/options.php:33
558
- msgid "I'm a nice person and I have helped support the author of this plugin"
559
- msgstr "Jsem milý člověk a podpořil jsem vývoj tohoto pluginu"
560
-
561
- #@ redirection
562
- #: view/admin/options.php:37
563
- msgid "Logging"
564
- msgstr "Logování"
565
-
566
- #@ redirection
567
- #: view/admin/options.php:40
568
- msgid "log redirected requests"
569
- msgstr "logovat žádosti o přesměrování"
570
-
571
- #@ redirection
572
- #: view/admin/options.php:42
573
- msgid "log 404 Not Found requests"
574
- msgstr "logovat požadavky 404 - Nenalezeno"
575
-
576
- #@ redirection
577
- #: view/admin/options.php:43
578
- msgid "Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found."
579
- msgstr "Zakázáním jedné nebo obou těchto voleb docílíte nižšího zatížení databáze a vyššího výkonu webu. To se hodí zejména u webů, které mají omezené systémové zdroje, velký počet přesměrování a chybných URL či v případech, kdy nepotřebujete záznamy o proběhlých přesměrováních."
580
-
581
- #@ redirection
582
- #: view/admin/options.php:47
583
- msgid "Expire Logs"
584
- msgstr "Expirace logů"
585
-
586
- #@ redirection
587
- #: view/admin/options.php:50
588
- msgid "days (enter 0 for no expiry)"
589
- msgstr "dnů (při zadání 0 neexpirují logy nikdy)"
590
-
591
- #@ redirection
592
- #: view/admin/options.php:54
593
- msgid "RSS Token"
594
- msgstr "RSS Token"
595
-
596
- #@ redirection
597
- #: view/admin/options.php:57
598
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
599
- msgstr "Unikátní token umožňující přístup RSS čtečkám k Redirection RSS (ponechte prázdné pro automatické generování)"
600
-
601
- #@ redirection
602
- #: view/admin/options.php:62
603
- msgid "URL Monitoring"
604
- msgstr "URL Monitoring"
605
-
606
- #@ redirection
607
- #: view/admin/options.php:63
608
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
609
- msgstr "Plugin Redirection může detekovat změny v URL a na jejich základě vytvářet automatická přesměrování pro konkrétní skupiny."
610
-
611
- #@ redirection
612
- #: view/admin/options.php:67
613
- msgid "Post &amp; Page URLs"
614
- msgstr "URL Příspěvků &amp; Stránek"
615
-
616
- #@ redirection
617
- #: view/admin/options.php:70
618
- #: view/admin/options.php:82
619
- msgid "Don't monitor"
620
- msgstr "Nesledovat"
621
-
622
- #@ redirection
623
- #: view/admin/options.php:74
624
- msgid "Monitor new posts"
625
- msgstr "Sledovat nové příspěvky"
626
-
627
- #@ redirection
628
- #: view/admin/options.php:79
629
- msgid "Category URLs"
630
- msgstr "URL kategorií"
631
-
632
- #@ redirection
633
- #: view/admin/options.php:89
634
- msgid "Update"
635
- msgstr "Aktualizovat"
636
-
637
- #@ redirection
638
- #: view/admin/options.php:95
639
- msgid "Import"
640
- msgstr "Import"
641
-
642
- #@ redirection
643
- #: view/admin/options.php:97
644
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
645
- msgstr "Složí k importu přesměrování z existujícího souboru .htaccess, CSV souboru nebo z XML exportu pluginu Redirection."
646
-
647
- #@ redirection
648
- #: view/admin/options.php:104
649
- msgid "Import into"
650
- msgstr "Importovat do"
651
-
652
- #@ redirection
653
- #: view/admin/options.php:107
654
- msgid "Upload"
655
- msgstr "Nahrát"
656
-
657
- #@ redirection
658
- #: view/admin/options.php:110
659
- msgid "Note that the group is ignored when uploading an XML file."
660
- msgstr "Poznámka: Nastavení Skupiny je při nahrání XML souboru ignorováno."
661
-
662
- #@ redirection
663
- #: view/admin/options.php:114
664
- msgid "Delete Redirection"
665
- msgstr "Odstranit plugin Redirection"
666
-
667
- #@ redirection
668
- #: view/admin/options.php:115
669
- msgid "Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do."
670
- msgstr "Výběrem této možnosti dojde k odstranění všech přesměrování, logů a všech nastavení, spojených s pluginem Redirection. Tyto změny není možné vzít zpět, ujistěte se, že víte, co děláte."
671
-
672
- #@ redirection
673
- #: view/admin/group_edit.php:10
674
- msgid "Tracked"
675
- msgstr "Sledování"
676
-
677
- #@ redirection
678
- #: view/admin/group_edit.php:11
679
- msgid "Whether to track 'hits' to items"
680
- msgstr "Sledovat 'hits' (použití) položek"
681
-
682
- #@ redirection
683
- #: view/admin/group_edit.php:14
684
- msgid "Enabled"
685
- msgstr "Povoleno"
686
-
687
- #@ redirection
688
- #: view/admin/group_edit.php:15
689
- msgid "Disabling a group will disable all items contained within it"
690
- msgstr "Zakázání skupiny současně zakáže všechny její položky"
691
-
692
- #@ redirection
693
- #: modules/404.php:37
694
- msgid "Log 404s"
695
- msgstr "Logovat chyby 404"
696
-
697
- #@ redirection
698
- #: modules/404.php:46
699
- #: modules/wordpress.php:121
700
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
701
- msgstr "<strong>Plugin neaktivní: nejprve musíte povolit <a href=\\\"options-permalink.php\\\">trvalé odkazy</a></strong>"
702
-
703
- #@ redirection
704
- #: modules/404.php:57
705
- msgid "<small>No options have been set</small>"
706
- msgstr "<small>Nic nebylo nastaveno</small>"
707
-
708
- #@ redirection
709
- #: modules/apache.php:77
710
- msgid "Location"
711
- msgstr "Umístění"
712
-
713
- #@ redirection
714
- #: modules/apache.php:82
715
- #, php-format
716
- msgid "WordPress is installed in: <code>%s</code>"
717
- msgstr "WordPress je nainstalován v: <code>%s</code>"
718
-
719
- #@ redirection
720
- #: modules/apache.php:87
721
- msgid "Canonical"
722
- msgstr "Kanonizace"
723
-
724
- #@ redirection
725
- #: modules/apache.php:90
726
- #: modules/apache.php:96
727
- msgid "Leave as is"
728
- msgstr "Beze změny"
729
-
730
- #@ redirection
731
- #: modules/apache.php:90
732
- #, php-format
733
- msgid "Strip WWW (%s)"
734
- msgstr "Odebrat WWW (%s)"
735
-
736
- #@ redirection
737
- #: modules/apache.php:90
738
- #, php-format
739
- msgid "Force WWW (www.%s)"
740
- msgstr "Vždy přidat WWW (www.%s)"
741
-
742
- #@ redirection
743
- #: modules/apache.php:94
744
- msgid "Strip Index"
745
- msgstr "Odebrat Index"
746
-
747
- #@ redirection
748
- #: modules/apache.php:96
749
- msgid "Strip index files (html,php)"
750
- msgstr "Odebrat soubory index (html,php)"
751
-
752
- #@ redirection
753
- #: modules/apache.php:101
754
- msgid "Memory Limit"
755
- msgstr "Memory Limit"
756
-
757
- #@ redirection
758
- #: modules/apache.php:104
759
- #: modules/apache.php:109
760
- msgid "Server default"
761
- msgstr "Server default"
762
-
763
- #@ redirection
764
- #: modules/apache.php:107
765
- msgid "Error Level"
766
- msgstr "Error Level"
767
-
768
- #@ redirection
769
- #: modules/apache.php:109
770
- msgid "No errors"
771
- msgstr "No errors"
772
-
773
- #@ redirection
774
- #: modules/apache.php:109
775
- msgid "Show errors"
776
- msgstr "Show errors"
777
-
778
- #@ redirection
779
- #: modules/apache.php:114
780
- msgid "Ban IPs"
781
- msgstr "Zakázané IP"
782
-
783
- #@ redirection
784
- #: modules/apache.php:120
785
- msgid "Allow IPs"
786
- msgstr "Povolené IP"
787
-
788
- #@ redirection
789
- #: modules/apache.php:126
790
- msgid "Raw .htaccess"
791
- msgstr "Raw .htaccess"
792
-
793
- #@ redirection
794
- #: modules/apache.php:132
795
- msgid "Site URL"
796
- msgstr "URL webu"
797
-
798
- #@ redirection
799
- #: modules/apache.php:135
800
- msgid "Advanced: For management of external sites"
801
- msgstr "Pokročilé: Pro správu externích webů"
802
-
803
- #@ redirection
804
- #: modules/apache.php:150
805
- msgid "<strong>Location is invalid - check that path exists</strong>"
806
- msgstr "<strong>Umístění je chybné - zkontrolujte zadanou cestu</strong>"
807
-
808
- #@ redirection
809
- #: modules/apache.php:156
810
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
811
- msgstr "<strong>Nelze zapisovat do <code>.htaccess</code> souboru - zkontrolujte přístupová oprávnění</strong>"
812
-
813
- #@ redirection
814
- #: modules/apache.php:163
815
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
816
- msgstr "<strong>Zakázáno: Je potřeba zadat správné umístění souboru <code>.htaccess</code></strong>"
817
-
818
- #@ redirection
819
- #: modules/apache.php:168
820
- msgid "strip WWW"
821
- msgstr "odstranit WWW"
822
-
823
- #@ redirection
824
- #: modules/apache.php:168
825
- msgid "force WWW"
826
- msgstr "vždy použít WWW"
827
-
828
- #@ redirection
829
- #: modules/apache.php:171
830
- msgid "strip index"
831
- msgstr "odstranit index"
832
-
833
- #@ redirection
834
- #: modules/apache.php:174
835
- #, php-format
836
- msgid "memory limit at %dMB"
837
- msgstr "memory limit - %dMB"
838
-
839
- #@ redirection
840
- #: modules/apache.php:177
841
- msgid "no errors"
842
- msgstr "nezobrazovat chyby"
843
-
844
- #@ redirection
845
- #: modules/apache.php:177
846
- msgid "show errors"
847
- msgstr "zobrazovat chyby"
848
-
849
- #@ redirection
850
- #: modules/apache.php:180
851
- msgid "IPs are banned"
852
- msgstr "IP adresy jsou zakázány"
853
-
854
- #@ redirection
855
- #: modules/apache.php:183
856
- msgid "IPs are allowed"
857
- msgstr "IP adresy jsou povoleny"
858
-
859
- #@ redirection
860
- #: models/redirect.php:386
861
- msgid "Redirect to URL"
862
- msgstr "Přesměrovat na URL"
863
-
864
- #@ redirection
865
- #: models/redirect.php:387
866
- msgid "Redirect to random post"
867
- msgstr "Přesměrovat na náhodný příspěvek"
868
-
869
- #@ redirection
870
- #: models/redirect.php:388
871
- msgid "Pass-through"
872
- msgstr "Pass-through"
873
-
874
- #@ redirection
875
- #: models/redirect.php:389
876
- msgid "Error (404)"
877
- msgstr "Chyba (404)"
878
-
879
- #@ redirection
880
- #: models/redirect.php:390
881
- msgid "Do nothing"
882
- msgstr "Nedělat nic"
883
-
884
- #@ redirection
885
- #: models/database.php:94
886
- #: models/module.php:161
887
- msgid "WordPress"
888
- msgstr "WordPress"
889
-
890
- #@ redirection
891
- #: models/module.php:162
892
- msgid "404 Errors"
893
- msgstr "chyby 404"
894
-
895
- #@ redirection
896
- #: models/module.php:187
897
- msgid "Strip WWW"
898
- msgstr "Odebrat WWW"
899
-
900
- #@ redirection
901
- #: models/module.php:187
902
- msgid "Force WWW"
903
- msgstr "Vždy použít WWW"
904
-
905
- #@ redirection
906
- #: models/module.php:192
907
- msgid "Strip index.php"
908
- msgstr "Odebrat index.php"
909
-
910
- #@ redirection
911
- #: models/database.php:96
912
- msgid "404"
913
- msgstr "404"
914
-
915
- #@ default
916
- #: models/database.php:101
917
- msgid "Redirections"
918
- msgstr "Redirections"
919
-
920
- #@ default
921
- #: models/database.php:102
922
- msgid "Modified Posts"
923
- msgstr "Upravené příspěvky"
924
-
925
- #@ redirection
926
- #: models/pager.php:404
927
- msgid "Previous"
928
- msgstr "Předchozí"
929
-
930
- #@ redirection
931
- #: models/pager.php:405
932
- msgid "Next"
933
- msgstr "Další"
934
-
935
- #@ redirection
936
- #: models/pager.php:463
937
- #, php-format
938
- msgid "%d per-page"
939
- msgstr "%d na stránku"
940
-
941
- #@ default
942
- #: models/pager.php:472
943
- #, php-format
944
- msgid "Displaying %s&#8211;%s of %s"
945
- msgstr "Zobrazuje se %s&#8211;%s z %s"
946
-
947
- #@ redirection
948
- #: models/group.php:194
949
- msgid "Yes"
950
- msgstr "Ano"
951
-
952
- #@ redirection
953
- #: models/group.php:195
954
- msgid "No"
955
- msgstr "Ne"
956
-
957
- #@ redirection
958
- #: ajax.php:370
959
- msgid "Sorry, but your redirection was not created"
960
- msgstr "Přesměrování nebylo vytvořeno"
961
-
962
- #@ redirection
963
- #: redirection.php:94
964
- msgid "Settings"
965
- msgstr "Nastavení"
966
-
967
- #@ redirection
968
- #: redirection.php:112
969
- msgid "Please wait..."
970
- msgstr "Čekejte prosím ..."
971
-
972
- #@ redirection
973
- #: redirection.php:121
974
- msgid "Redirection"
975
- msgstr "Redirection"
976
-
977
- #@ redirection
978
- #: redirection.php:159
979
- msgid "Your module was successfully created"
980
- msgstr "Modul byl úspěšně vytvořen"
981
-
982
- #@ redirection
983
- #: redirection.php:163
984
- msgid "Your module was not created - did you provide a name?"
985
- msgstr "Modul nebyl vytvořen - nezapomněli jste zadat název?"
986
-
987
- #@ redirection
988
- #: redirection.php:228
989
- msgid "Your options were updated"
990
- msgstr "Nastavení aktualizováno"
991
-
992
- #@ redirection
993
- #: redirection.php:236
994
- msgid "Redirection data has been deleted and the plugin disabled"
995
- msgstr "Data pluginu Redirection byla odstraněna a plugin byl deaktivován"
996
-
997
- #@ redirection
998
- #: redirection.php:246
999
- #, php-format
1000
- msgid "%d redirection was successfully imported"
1001
- msgid_plural "%d redirections were successfully imported"
1002
- msgstr[0] "%d přesměrování bylo úspěšně importováno"
1003
- msgstr[1] "%d přesměrování byla úspěšně importována"
1004
- msgstr[2] "%d přesměrování bylo úspěšně importováno"
1005
-
1006
- #@ redirection
1007
- #: redirection.php:248
1008
- msgid "No items were imported"
1009
- msgstr "Žádné položky nebyly importovány"
1010
-
1011
- #@ redirection
1012
- #: redirection.php:266
1013
- msgid "Your logs have been deleted"
1014
- msgstr "Vaše logy byly smazány"
1015
-
1016
- #@ redirection
1017
- #: redirection.php:289
1018
- msgid "Your group was added successfully"
1019
- msgstr "Skupina byla úspěšně přidána"
1020
-
1021
- #@ redirection
1022
- #: redirection.php:293
1023
- msgid "Please specify a group name"
1024
- msgstr "Zadejte prosím název skupiny"
1025
-
1026
- #@ default
1027
- #: redirection.php:330
1028
- msgid "Redirection is available in"
1029
- msgstr "Redirection je k dispozici v"
1030
-
1031
- #@ redirection
1032
- #: matches/url.php:25
1033
- msgid "URL only"
1034
- msgstr "pouze URL"
1035
-
1036
- #@ redirection
1037
- #: matches/referrer.php:47
1038
- #: matches/url.php:40
1039
- #: matches/user_agent.php:55
1040
- msgid "HTTP Code"
1041
- msgstr "HTTP kód"
1042
-
1043
- #@ redirection
1044
- #: matches/login.php:25
1045
- msgid "URL and login status"
1046
- msgstr "URL a přihlášení"
1047
-
1048
- #@ redirection
1049
- #: matches/login.php:33
1050
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
1051
- msgstr "Cílová URL bude vybírána z následujících URL - v závislosti na tom, zda je uživatel přihlášen nebo ne. Prázdné pole pro URL znamená, že k přesměrování nedojde"
1052
-
1053
- #@ redirection
1054
- #: matches/login.php:39
1055
- #: matches/login.php:41
1056
- msgid "Logged In"
1057
- msgstr "Přihlášený"
1058
-
1059
- #@ redirection
1060
- #: matches/login.php:51
1061
- #: matches/login.php:53
1062
- msgid "Logged Out"
1063
- msgstr "Odhlášený"
1064
-
1065
- #@ redirection
1066
- #: matches/user_agent.php:27
1067
- msgid "URL and user agent"
1068
- msgstr "URL a user agent"
1069
-
1070
- #@ redirection
1071
- #: matches/user_agent.php:32
1072
- msgid "FeedBurner"
1073
- msgstr "FeedBurner"
1074
-
1075
- #@ redirection
1076
- #: matches/user_agent.php:33
1077
- msgid "Internet Explorer"
1078
- msgstr "Internet Explorer"
1079
-
1080
- #@ redirection
1081
- #: matches/user_agent.php:34
1082
- msgid "FireFox"
1083
- msgstr "FireFox"
1084
-
1085
- #@ redirection
1086
- #: matches/user_agent.php:35
1087
- msgid "Opera"
1088
- msgstr "Opera"
1089
-
1090
- #@ redirection
1091
- #: matches/user_agent.php:36
1092
- msgid "Safari"
1093
- msgstr "Safari"
1094
-
1095
- #@ redirection
1096
- #: matches/user_agent.php:37
1097
- msgid "iPhone"
1098
- msgstr "iPhone"
1099
-
1100
- #@ redirection
1101
- #: matches/user_agent.php:38
1102
- msgid "Nintendo Wii"
1103
- msgstr "Nintendo Wii"
1104
-
1105
- #@ redirection
1106
- #: matches/user_agent.php:66
1107
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
1108
- msgstr "Návštěvník bude přesměrován ze zdrojové URL, pokud odpovídá jeho identifikace User Agent. Lze nastavit cílové URL pro <em>shodu</em> parametru User Agent a další URL pro ostatní případy - <em>neshoduje se</em>. Ponechání prázdné URL znamená, že návštěvník nebude přesměrován. <strong>Poznámka: ve všech případech je použit regulární výraz - verze a revize nejsou brány v potaz.</strong>\n"
1109
-
1110
- #@ redirection
1111
- #: matches/referrer.php:63
1112
- #: matches/referrer.php:65
1113
- #: matches/user_agent.php:73
1114
- #: matches/user_agent.php:75
1115
- msgid "Matched"
1116
- msgstr "Shoda"
1117
-
1118
- #@ redirection
1119
- #: matches/referrer.php:73
1120
- #: matches/referrer.php:75
1121
- #: matches/user_agent.php:83
1122
- #: matches/user_agent.php:85
1123
- msgid "Not matched"
1124
- msgstr "Neshoduje se"
1125
-
1126
- #@ redirection
1127
- #: matches/referrer.php:28
1128
- msgid "URL and referrer"
1129
- msgstr "URL a referrer"
1130
-
1131
- #@ redirection
1132
- #: matches/referrer.php:57
1133
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
1134
- msgstr "Návštěvník bude přesměrován ze zdrojové URL, pokud přichází z konkrétní URL (referrer). Lze nastavit cílové URL pro <em>shodu</em> parametru referrer a další URL pro ostatní případy - <em>neshoduje se</em>. Ponechání prázdné URL znamená, že návštěvník nebude přesměrován."
1135
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-da.mo DELETED
Binary file
locale/redirection-da.po DELETED
@@ -1,909 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Redirection\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-22 17:38+0100\n"
6
- "PO-Revision-Date: 2012-05-01 20:58+0100\n"
7
- "Last-Translator: Rasmus Himmelstrup <rh@iihnordic.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-Language: Danish\n"
15
- "X-Poedit-Country: Denmark\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: ajax.php:370
19
- msgid "Sorry, but your redirection was not created"
20
- msgstr "Beklager, men dit redirect blev ikke oprettet"
21
-
22
- #: redirection.php:94
23
- msgid "Settings"
24
- msgstr "Indstillinger"
25
-
26
- #: redirection.php:112
27
- msgid "Please wait..."
28
- msgstr "Vent venligst.."
29
-
30
- #: redirection.php:115
31
- msgid "Are you sure?"
32
- msgstr "Er du sikker?"
33
-
34
- #: redirection.php:116
35
- msgid "No items have been selected"
36
- msgstr "Ingen elementer blev valgt"
37
-
38
- #: redirection.php:121
39
- msgid "Redirection"
40
- msgstr "Redirection"
41
-
42
- #: redirection.php:159
43
- msgid "Your module was successfully created"
44
- msgstr "Dit modul blev oprettet succesfuldt"
45
-
46
- #: redirection.php:163
47
- msgid "Your module was not created - did you provide a name?"
48
- msgstr "Dit modul blev ikke oprettet - tilføjede du et navn?"
49
-
50
- #: redirection.php:228
51
- msgid "Your options were updated"
52
- msgstr "Dine indstillinger blev opdateret"
53
-
54
- #: redirection.php:236
55
- msgid "Redirection data has been deleted and the plugin disabled"
56
- msgstr "Redirection data blev slettet og plugin'et deaktiveret"
57
-
58
- #: redirection.php:248
59
- msgid "No items were imported"
60
- msgstr "Ingen redirects blev importeret"
61
-
62
- #: redirection.php:266
63
- msgid "Your logs have been deleted"
64
- msgstr "Dine logs blev slettet"
65
-
66
- #: redirection.php:289
67
- msgid "Your group was added successfully"
68
- msgstr "Din gruppe blev tilføjet succesfuldt"
69
-
70
- #: redirection.php:293
71
- msgid "Please specify a group name"
72
- msgstr "Tilføj venligst et gruppenavn"
73
-
74
- #: redirection.php:330
75
- msgid "Redirection is available in"
76
- msgstr "Redirection er tilgængelig i"
77
-
78
- #: fileio/csv.php:21
79
- #, php-format
80
- msgid "module_%d.csv"
81
- msgstr "module_%d.csv"
82
-
83
- #: fileio/xml.php:32
84
- #, php-format
85
- msgid "module_%d.xml"
86
- msgstr "module_%d.xml"
87
-
88
- #: fileio/xml.php:105
89
- #, php-format
90
- msgid "%s imported on %s at %s"
91
- msgstr "%s importeret i %s af %s"
92
-
93
- #: fileio/xml.php:168
94
- msgid "XML importing is only available with PHP5 - you have PHP4."
95
- msgstr "XML importering er kun tilgængeligt i PHP5 - du har PHP4."
96
-
97
- #: matches/login.php:25
98
- msgid "URL and login status"
99
- msgstr "URL og login status"
100
-
101
- #: matches/login.php:33
102
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
103
- msgstr "Target URL vil blive valgt fra en af de følgende URLs, afhængig af om brugeen er logget ind eller ej. Hvis du lader en URL være blank betyder det, at brugeren ikke er redirected."
104
-
105
- #: matches/login.php:39
106
- #: matches/login.php:41
107
- msgid "Logged In"
108
- msgstr "Logget Ind"
109
-
110
- #: matches/login.php:51
111
- #: matches/login.php:53
112
- msgid "Logged Out"
113
- msgstr "Logget Ud"
114
-
115
- #: matches/referrer.php:28
116
- msgid "URL and referrer"
117
- msgstr "URL og henvisning"
118
-
119
- #: matches/referrer.php:40
120
- msgid "Referrer"
121
- msgstr "Henvisning"
122
-
123
- #: matches/referrer.php:43
124
- msgid "Regex"
125
- msgstr "Regex"
126
-
127
- #: matches/referrer.php:47
128
- #: matches/url.php:40
129
- #: matches/user_agent.php:57
130
- msgid "HTTP Code"
131
- msgstr "HTTP Kode"
132
-
133
- #: matches/referrer.php:57
134
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
135
- msgstr "Brugeren vil blive redirected fra kilde URL hvis henvisningen matcher. Du kan specificere en <em>matchende</em> target URL som den adresse hvor brugerne sendes hen, hvis de matcher og en <em>ikke matchende</em> hvis de ikke matcher. Lader du en URL være blank betyder det, at brugeren ikke redirectes."
136
-
137
- #: matches/referrer.php:63
138
- #: matches/referrer.php:65
139
- #: matches/user_agent.php:75
140
- #: matches/user_agent.php:77
141
- msgid "Matched"
142
- msgstr "Matcher"
143
-
144
- #: matches/referrer.php:73
145
- #: matches/referrer.php:75
146
- #: matches/user_agent.php:85
147
- #: matches/user_agent.php:87
148
- msgid "Not matched"
149
- msgstr "Matcher ikke"
150
-
151
- #: matches/url.php:25
152
- msgid "URL only"
153
- msgstr "Kun URL"
154
-
155
- #: matches/url.php:32
156
- msgid "Target URL"
157
- msgstr "Target URL"
158
-
159
- #: matches/user_agent.php:27
160
- msgid "URL and user agent"
161
- msgstr "URL og user agent"
162
-
163
- #: matches/user_agent.php:32
164
- msgid "FeedBurner"
165
- msgstr "FeedBurner"
166
-
167
- #: matches/user_agent.php:33
168
- msgid "Internet Explorer"
169
- msgstr "Internet Explorer"
170
-
171
- #: matches/user_agent.php:34
172
- msgid "FireFox"
173
- msgstr "Firefox"
174
-
175
- #: matches/user_agent.php:35
176
- msgid "Opera"
177
- msgstr "Opera"
178
-
179
- #: matches/user_agent.php:36
180
- msgid "Safari"
181
- msgstr "Safari"
182
-
183
- #: matches/user_agent.php:37
184
- msgid "iPhone"
185
- msgstr "iPhone"
186
-
187
- #: matches/user_agent.php:38
188
- msgid "iPad"
189
- msgstr "iPad"
190
-
191
- #: matches/user_agent.php:39
192
- msgid "Android"
193
- msgstr "Android"
194
-
195
- #: matches/user_agent.php:40
196
- msgid "Nintendo Wii"
197
- msgstr "Nintendo Wii"
198
-
199
- #: matches/user_agent.php:45
200
- msgid "User Agent"
201
- msgstr "User Agent"
202
-
203
- #: matches/user_agent.php:68
204
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
205
- msgstr "Brugeren vil blive redirected fra kilde URL hvis user agent matcher. Du kan specificere en <em>matchende</em> target URL som den adresse hvor brugerne sendes hen, hvis de matcher og <em>ikke matchende</em> hvis de ikke matcher. Hvis URL efterlades blank betyder det, at brugeren ikke redirectes. <strong>Alle matches foretages som regulære udtryk</strong>.\n"
206
-
207
- #: models/database.php:94
208
- #: models/module.php:161
209
- msgid "WordPress"
210
- msgstr "WordPress"
211
-
212
- #: models/database.php:95
213
- #: models/module.php:160
214
- msgid "Apache"
215
- msgstr "Apache"
216
-
217
- #: models/database.php:96
218
- msgid "404"
219
- msgstr "404"
220
-
221
- #: models/database.php:101
222
- msgid "Redirections"
223
- msgstr "Redirections"
224
-
225
- #: models/database.php:102
226
- msgid "Modified Posts"
227
- msgstr "Ændrede poster"
228
-
229
- #: models/group.php:194
230
- msgid "Yes"
231
- msgstr "Ja"
232
-
233
- #: models/group.php:195
234
- msgid "No"
235
- msgstr "Nej"
236
-
237
- #: models/module.php:162
238
- msgid "404 Errors"
239
- msgstr "404 Fejl"
240
-
241
- #: models/module.php:187
242
- msgid "Strip WWW"
243
- msgstr "Fjern WWW"
244
-
245
- #: models/module.php:187
246
- msgid "Force WWW"
247
- msgstr "Forcér WWW"
248
-
249
- #: models/module.php:192
250
- msgid "Strip index.php"
251
- msgstr "Fjern index.php"
252
-
253
- #: models/pager.php:404
254
- msgid "Previous"
255
- msgstr "Forrige"
256
-
257
- #: models/pager.php:405
258
- msgid "Next"
259
- msgstr "Næste"
260
-
261
- #: models/pager.php:463
262
- #, php-format
263
- msgid "%d per-page"
264
- msgstr "% per-side"
265
-
266
- #: models/pager.php:472
267
- #, php-format
268
- msgid "Displaying %s&#8211;%s of %s"
269
- msgstr "Viser %s&#8211;%s af %s"
270
-
271
- #: models/redirect.php:386
272
- msgid "Redirect to URL"
273
- msgstr "Redirect til URL"
274
-
275
- #: models/redirect.php:387
276
- msgid "Redirect to random post"
277
- msgstr "Redirect til tilfældigt indlæg"
278
-
279
- #: models/redirect.php:388
280
- msgid "Pass-through"
281
- msgstr "Pass-through"
282
-
283
- #: models/redirect.php:389
284
- msgid "Error (404)"
285
- msgstr "Fejl (404)"
286
-
287
- #: models/redirect.php:390
288
- msgid "Do nothing"
289
- msgstr "Gør ingenting"
290
-
291
- #: modules/404.php:37
292
- msgid "Log 404s"
293
- msgstr "Log 404"
294
-
295
- #: modules/404.php:46
296
- #: modules/wordpress.php:121
297
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
298
- msgstr "<strong>Deaktiveret: Du skal aktivere <a href=\"options-permalink.php\">permalinks</a> før du kan bruge det</strong>"
299
-
300
- #: modules/404.php:57
301
- msgid "<small>No options have been set</small>"
302
- msgstr "<small>Ingen indstillinger blev ændret</small>"
303
-
304
- #: modules/apache.php:77
305
- msgid "Location"
306
- msgstr "Lokation"
307
-
308
- #: modules/apache.php:82
309
- #, php-format
310
- msgid "WordPress is installed in: <code>%s</code>"
311
- msgstr "WordPress er installeret i: <code>%s</code>"
312
-
313
- #: modules/apache.php:87
314
- msgid "Canonical"
315
- msgstr "Canonical"
316
-
317
- #: modules/apache.php:90
318
- #: modules/apache.php:96
319
- msgid "Leave as is"
320
- msgstr "Ingen ændriger"
321
-
322
- #: modules/apache.php:90
323
- #, php-format
324
- msgid "Strip WWW (%s)"
325
- msgstr "Fjern WWW (%s)"
326
-
327
- #: modules/apache.php:90
328
- #, php-format
329
- msgid "Force WWW (www.%s)"
330
- msgstr "Forcér WWW (www.%s)"
331
-
332
- #: modules/apache.php:94
333
- msgid "Strip Index"
334
- msgstr "Fjern Index"
335
-
336
- #: modules/apache.php:96
337
- msgid "Strip index files (html,php)"
338
- msgstr "Fjern index filer (html,php)"
339
-
340
- #: modules/apache.php:101
341
- msgid "Memory Limit"
342
- msgstr "Hukommelsesbegrænsning"
343
-
344
- #: modules/apache.php:104
345
- #: modules/apache.php:109
346
- msgid "Server default"
347
- msgstr "Server default"
348
-
349
- #: modules/apache.php:107
350
- msgid "Error Level"
351
- msgstr "Fejl Level"
352
-
353
- #: modules/apache.php:109
354
- msgid "No errors"
355
- msgstr "Ingen fejl"
356
-
357
- #: modules/apache.php:109
358
- msgid "Show errors"
359
- msgstr "Vis fejl"
360
-
361
- #: modules/apache.php:114
362
- msgid "Ban IPs"
363
- msgstr "Ekskludér IPs"
364
-
365
- #: modules/apache.php:120
366
- msgid "Allow IPs"
367
- msgstr "Tillad IPs"
368
-
369
- #: modules/apache.php:126
370
- msgid "Raw .htaccess"
371
- msgstr "Rå .htaccess"
372
-
373
- #: modules/apache.php:132
374
- msgid "Site URL"
375
- msgstr "Site URL"
376
-
377
- #: modules/apache.php:135
378
- msgid "Advanced: For management of external sites"
379
- msgstr "Avanceret: For håndtering af eksterne sites"
380
-
381
- #: modules/apache.php:150
382
- msgid "<strong>Location is invalid - check that path exists</strong>"
383
- msgstr "<strong>Lokationen er ugyldig - check at stien eksisterer</strong>"
384
-
385
- #: modules/apache.php:156
386
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
387
- msgstr "<strong>Kunne ikke skrive til konfigurerede <code>.htaccess</code> fil - check fil tilladelser</strong>"
388
-
389
- #: modules/apache.php:163
390
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
391
- msgstr "<strong>Deaktiveret: indtast lokationen af <code>.htaccess</code> filen for at gøre dette validt</strong>"
392
-
393
- #: modules/apache.php:168
394
- msgid "strip WWW"
395
- msgstr "fjern WWW"
396
-
397
- #: modules/apache.php:168
398
- msgid "force WWW"
399
- msgstr "forcér WWW"
400
-
401
- #: modules/apache.php:171
402
- msgid "strip index"
403
- msgstr "fjern index"
404
-
405
- #: modules/apache.php:174
406
- #, php-format
407
- msgid "memory limit at %dMB"
408
- msgstr "Hukommelsesbegræsning på %dMB"
409
-
410
- #: modules/apache.php:177
411
- msgid "no errors"
412
- msgstr "ingen fejl"
413
-
414
- #: modules/apache.php:177
415
- msgid "show errors"
416
- msgstr "vis fejl"
417
-
418
- #: modules/apache.php:180
419
- msgid "IPs are banned"
420
- msgstr "IPs er ekskluderet"
421
-
422
- #: modules/apache.php:183
423
- msgid "IPs are allowed"
424
- msgstr "IPs er tilladte"
425
-
426
- #: view/admin/add.php:3
427
- msgid "Add new redirection"
428
- msgstr "Tilføj ny redirection."
429
-
430
- #: view/admin/add.php:6
431
- msgid "Your redirection has been added."
432
- msgstr "Dit redirect er tilføjet."
433
-
434
- #: view/admin/add.php:12
435
- msgid "Source URL"
436
- msgstr "Kilde URL"
437
-
438
- #: view/admin/add.php:16
439
- msgid "Match"
440
- msgstr "Match"
441
-
442
- #: view/admin/add.php:22
443
- msgid "Action"
444
- msgstr "Action"
445
-
446
- #: view/admin/add.php:27
447
- msgid "Regular expression"
448
- msgstr "Regulært udtryk"
449
-
450
- #: view/admin/add.php:36
451
- msgid "Group"
452
- msgstr "Gruppe"
453
-
454
- #: view/admin/add.php:43
455
- msgid "Add Redirection"
456
- msgstr "Tilføj redirect"
457
-
458
- #: view/admin/group_edit.php:6
459
- #: view/admin/group_list.php:37
460
- #: view/admin/group_list.php:100
461
- #: view/admin/module_edit.php:18
462
- #: view/admin/module_list.php:42
463
- msgid "Name"
464
- msgstr "Navn"
465
-
466
- #: view/admin/group_edit.php:10
467
- msgid "Tracked"
468
- msgstr "Tracked"
469
-
470
- #: view/admin/group_edit.php:11
471
- msgid "Whether to track 'hits' to items"
472
- msgstr "Antal 'hits' til hver redirect "
473
-
474
- #: view/admin/group_edit.php:14
475
- msgid "Enabled"
476
- msgstr "Aktiveret"
477
-
478
- #: view/admin/group_edit.php:15
479
- msgid "Disabling a group will disable all items contained within it"
480
- msgstr "Deaktivering af en gruppe vil deaktivere all objekter indeholdt i gruppen"
481
-
482
- #: view/admin/group_edit.php:20
483
- #: view/admin/item_edit.php:27
484
- #: view/admin/module_edit.php:27
485
- msgid "Save"
486
- msgstr "Gem"
487
-
488
- #: view/admin/group_edit.php:21
489
- #: view/admin/item_edit.php:28
490
- #: view/admin/module_edit.php:28
491
- msgid "Cancel"
492
- msgstr "Annullér"
493
-
494
- #: view/admin/group_item.php:3
495
- msgid "edit group"
496
- msgstr "redigér gruppe"
497
-
498
- #: view/admin/group_item.php:23
499
- #: view/admin/item.php:27
500
- msgid "disabled"
501
- msgstr "deaktiveret"
502
-
503
- #: view/admin/group_list.php:6
504
- msgid "Groups for module"
505
- msgstr "Grupper for moduler"
506
-
507
- #: view/admin/group_list.php:16
508
- #: view/admin/log.php:38
509
- msgid "Module"
510
- msgstr "Modul"
511
-
512
- #: view/admin/group_list.php:21
513
- #: view/admin/item_list.php:29
514
- #: view/admin/log.php:16
515
- #: view/admin/log.php:23
516
- msgid "Search"
517
- msgstr "Søg"
518
-
519
- #: view/admin/group_list.php:26
520
- msgid "go"
521
- msgstr "send"
522
-
523
- #: view/admin/group_list.php:36
524
- #: view/admin/item_list.php:42
525
- #: view/admin/module_list.php:17
526
- msgid "Hits"
527
- msgstr "Hits"
528
-
529
- #: view/admin/group_list.php:59
530
- #: view/admin/item_list.php:67
531
- msgid "Select All"
532
- msgstr "Vælg Alle"
533
-
534
- #: view/admin/group_list.php:60
535
- #: view/admin/item_list.php:68
536
- msgid "Toggle"
537
- msgstr "Skift"
538
-
539
- #: view/admin/group_list.php:61
540
- #: view/admin/item_list.php:69
541
- msgid "Reset Hits"
542
- msgstr "Nulstil Hits"
543
-
544
- #: view/admin/group_list.php:62
545
- #: view/admin/item_list.php:70
546
- #: view/admin/log.php:30
547
- #: view/admin/options.php:120
548
- msgid "Delete"
549
- msgstr "Slet"
550
-
551
- #: view/admin/group_list.php:64
552
- #: view/admin/item_list.php:72
553
- msgid "Move To"
554
- msgstr "Flyt til"
555
-
556
- #: view/admin/group_list.php:69
557
- #: view/admin/item_list.php:34
558
- #: view/admin/item_list.php:77
559
- msgid "Go"
560
- msgstr "Send"
561
-
562
- #: view/admin/group_list.php:75
563
- #: view/admin/item_list.php:83
564
- msgid "re-order"
565
- msgstr "Sorter"
566
-
567
- #: view/admin/group_list.php:76
568
- #: view/admin/item_list.php:84
569
- msgid "save order"
570
- msgstr "gem opstilling"
571
-
572
- #: view/admin/group_list.php:89
573
- msgid "You have no groups in this module."
574
- msgstr "Du har ingen grupper i modulet"
575
-
576
- #: view/admin/group_list.php:94
577
- msgid "Add Group"
578
- msgstr "Tilføj gruppe"
579
-
580
- #: view/admin/group_list.php:105
581
- msgid "Add"
582
- msgstr "Tilføj"
583
-
584
- #: view/admin/item_edit.php:3
585
- #, php-format
586
- msgid "%s by matching %s"
587
- msgstr "%s ved at matche %s"
588
-
589
- #: view/admin/item_edit.php:7
590
- msgid "Title"
591
- msgstr "Titel"
592
-
593
- #: view/admin/item_edit.php:10
594
- msgid "optional"
595
- msgstr "valgfri"
596
-
597
- #: view/admin/item_list.php:7
598
- msgid "Redirections for group"
599
- msgstr "Redirections for gruppe"
600
-
601
- #: view/admin/item_list.php:41
602
- msgid "Last Access"
603
- msgstr "Sidste adgang"
604
-
605
- #: view/admin/item_list.php:43
606
- #: view/admin/module_list.php:46
607
- msgid "Type"
608
- msgstr "Type"
609
-
610
- #: view/admin/item_list.php:44
611
- msgid "URL"
612
- msgstr "URL"
613
-
614
- #: view/admin/item_list.php:44
615
- msgid "Position"
616
- msgstr "Position"
617
-
618
- #: view/admin/item_list.php:88
619
- msgid "You have no redirections."
620
- msgstr "Du har ingen redirects"
621
-
622
- #: view/admin/log.php:6
623
- msgid "Redirection Log"
624
- msgstr "Redirection Log"
625
-
626
- #: view/admin/log.php:29
627
- msgid "Bulk Actions"
628
- msgstr "Flere handlinger"
629
-
630
- #: view/admin/log.php:33
631
- msgid "Apply"
632
- msgstr "Tilføj"
633
-
634
- #: view/admin/log.php:49
635
- msgid "Filter"
636
- msgstr "Filter"
637
-
638
- #: view/admin/log.php:67
639
- msgid "Date"
640
- msgstr "Dato"
641
-
642
- #: view/admin/log.php:70
643
- msgid "IP"
644
- msgstr "IP"
645
-
646
- #: view/admin/log.php:85
647
- msgid "There are no logs to display!"
648
- msgstr "Der er ingen logs at vise"
649
-
650
- #: view/admin/log.php:94
651
- msgid "Process Current Logs"
652
- msgstr "Proces for nuværende logs"
653
-
654
- #: view/admin/log.php:95
655
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
656
- msgstr "Tilføjelserne vil påvirke alle nuværende tilgængelige logs (dvs. din søgeforespørgsel vil filtrere de forskellige logs)"
657
-
658
- #: view/admin/log.php:100
659
- msgid "Delete Logs"
660
- msgstr "Fjern logs"
661
-
662
- #: view/admin/log_item_details.php:9
663
- msgid "Redirect to"
664
- msgstr "Redirect til"
665
-
666
- #: view/admin/log_item_details.php:15
667
- msgid "Redirected by"
668
- msgstr "Redirected af"
669
-
670
- #: view/admin/log_item_details.php:16
671
- msgid "for"
672
- msgstr "For"
673
-
674
- #: view/admin/module_item.php:23
675
- msgid "View as"
676
- msgstr "Vis som"
677
-
678
- #: view/admin/module_item.php:25
679
- msgid "CSV"
680
- msgstr "CSV"
681
-
682
- #: view/admin/module_item.php:26
683
- msgid "XML"
684
- msgstr "XML"
685
-
686
- #: view/admin/module_item.php:28
687
- msgid "RSS"
688
- msgstr "RSS"
689
-
690
- #: view/admin/module_item.php:41
691
- msgid "edit"
692
- msgstr "redigér"
693
-
694
- #: view/admin/module_item.php:43
695
- msgid "delete"
696
- msgstr "slet"
697
-
698
- #: view/admin/module_item.php:45
699
- msgid "reset"
700
- msgstr "nulstil"
701
-
702
- #: view/admin/module_list.php:6
703
- #: view/admin/submenu.php:16
704
- msgid "Modules"
705
- msgstr "Moduler"
706
-
707
- #: view/admin/module_list.php:14
708
- msgid "Details"
709
- msgstr "Detaljer"
710
-
711
- #: view/admin/module_list.php:15
712
- #: view/admin/submenu.php:11
713
- msgid "Groups"
714
- msgstr "Grupper"
715
-
716
- #: view/admin/module_list.php:16
717
- msgid "Items"
718
- msgstr "Objekter"
719
-
720
- #: view/admin/module_list.php:18
721
- msgid "Operations"
722
- msgstr "Operationer"
723
-
724
- #: view/admin/module_list.php:27
725
- msgid "Note: Hits are dependant on log entries"
726
- msgstr "Bemærk: Hits er afhængig af log tilføjelser"
727
-
728
- #: view/admin/module_list.php:29
729
- msgid "You have no modules defined yet"
730
- msgstr "Du har ikke defineret nogle moduler endnu"
731
-
732
- #: view/admin/module_list.php:34
733
- msgid "Add Module"
734
- msgstr "Tilføj Modul"
735
-
736
- #: view/admin/module_list.php:35
737
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
738
- msgstr "Et modul er et element, der kontrollerer hvordan redirects håndteres. Elementer i et WordPress modul er håndteret af WordPress, elementer i et Apache modul er håndteret i <code>.htaccess</code>, og elementer i et 404 modul påvirker hvordan 404 fejl er gemt."
739
-
740
- #: view/admin/module_list.php:55
741
- msgid "Create"
742
- msgstr "Tilføj"
743
-
744
- #: view/admin/options.php:6
745
- #: view/admin/submenu.php:26
746
- msgid "Options"
747
- msgstr "Indstillinger"
748
-
749
- #: view/admin/options.php:15
750
- msgid "Auto-generate URL"
751
- msgstr "Auto-generér URL"
752
-
753
- #: view/admin/options.php:19
754
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
755
- msgstr "Dette vil blive brugt til at auto-generere en URL hvis ingen URL er givet. Du kan bruge specielle tags $dec$ eller $hex$ for at indsætte en unik ID (enten decimal eller hex)"
756
-
757
- #: view/admin/options.php:24
758
- msgid "IP Lookup Service"
759
- msgstr "IP Lookup Service"
760
-
761
- #: view/admin/options.php:30
762
- msgid "Plugin Support"
763
- msgstr "Plugin Support"
764
-
765
- #: view/admin/options.php:33
766
- msgid "I'm a nice person and I have helped support the author of this plugin"
767
- msgstr "Jeg er en flink person og jeg har hjulpet vedkommende, der har udarbejdet dette plugin."
768
-
769
- #: view/admin/options.php:37
770
- msgid "Logging"
771
- msgstr "Logging"
772
-
773
- #: view/admin/options.php:40
774
- msgid "log redirected requests"
775
- msgstr "log redirectede forespørgelser"
776
-
777
- #: view/admin/options.php:42
778
- msgid "log 404 Not Found requests"
779
- msgstr "log 404 ikke fundet forespørgelser"
780
-
781
- #: view/admin/options.php:43
782
- msgid "Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found."
783
- msgstr "Fravælg en eller begge af disse for at fjerne logging og reducér database load hvis dine redirectede URLs bliver forespurgt på hyppigt, og/eller hvis dit website er meget besøgt eller siderne ofte ikke kan findes."
784
-
785
- #: view/admin/options.php:47
786
- msgid "Expire Logs"
787
- msgstr "Logs udløber efter"
788
-
789
- #: view/admin/options.php:50
790
- msgid "days (enter 0 for no expiry)"
791
- msgstr "dage (indtast 0 for ingen udløbsdato)"
792
-
793
- #: view/admin/options.php:54
794
- msgid "RSS Token"
795
- msgstr "RSS Token"
796
-
797
- #: view/admin/options.php:57
798
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
799
- msgstr "En unik token der tillader feed readers adgang til Redirection RSS (undgå at udfylde for at auto-generere)"
800
-
801
- #: view/admin/options.php:62
802
- msgid "URL Monitoring"
803
- msgstr "URL Monitorering"
804
-
805
- #: view/admin/options.php:63
806
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
807
- msgstr "Du kan sætte Redirection til at opdage ændringer i URLs automatisk og opsætte automatiske redirections i en specifik gruppe."
808
-
809
- #: view/admin/options.php:67
810
- msgid "Post &amp; Page URLs"
811
- msgstr "Indlæg og Side URLs"
812
-
813
- #: view/admin/options.php:70
814
- #: view/admin/options.php:82
815
- msgid "Don't monitor"
816
- msgstr "Monitorér ikke"
817
-
818
- #: view/admin/options.php:74
819
- msgid "Monitor new posts"
820
- msgstr "Monitorér nye indlæg"
821
-
822
- #: view/admin/options.php:79
823
- msgid "Category URLs"
824
- msgstr "Kategori URLs"
825
-
826
- #: view/admin/options.php:89
827
- msgid "Update"
828
- msgstr "Opdatér"
829
-
830
- #: view/admin/options.php:95
831
- msgid "Import"
832
- msgstr "Importér"
833
-
834
- #: view/admin/options.php:97
835
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
836
- msgstr "Her kan du importere redirections fra en eksisterende .htaccess fil, en csv fil, eller en Redirection XML."
837
-
838
- #: view/admin/options.php:104
839
- msgid "Import into"
840
- msgstr "Importér i"
841
-
842
- #: view/admin/options.php:107
843
- msgid "Upload"
844
- msgstr "Upload"
845
-
846
- #: view/admin/options.php:110
847
- msgid "Note that the group is ignored when uploading an XML file."
848
- msgstr "Bemærk at gruppen er ignoreret når du uploader en XML fil."
849
-
850
- #: view/admin/options.php:114
851
- msgid "Delete Redirection"
852
- msgstr "Fjern Rediretion."
853
-
854
- #: view/admin/options.php:115
855
- msgid "Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do."
856
- msgstr "Ved at vælge denne mulighed sletter du alle redirections, alle logs, og alle indstillinger associeret med plugin'et Redirection. Vær helt sikker på at det er det, du vil."
857
-
858
- #: view/admin/submenu.php:6
859
- msgid "Redirects"
860
- msgstr "Redirects"
861
-
862
- #: view/admin/submenu.php:21
863
- msgid "Log"
864
- msgstr "Log"
865
-
866
- #: view/admin/submenu.php:31
867
- msgid "Support"
868
- msgstr "Support"
869
-
870
- #: view/admin/support.php:5
871
- msgid "Redirection Support"
872
- msgstr "Redirection Support"
873
-
874
- #: view/admin/support.php:9
875
- msgid "Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>."
876
- msgstr "Redirection er gratis at bruge - livet er fantastisk og perfekt. Men Redirection har taget lang tid at udvikle, så hvis du finder det brugbart, kan du hjælpe med at supportere udviklingen yderligere ved at <strong>donere et lille beløb</strong>."
877
-
878
- #: view/admin/support.php:10
879
- msgid "This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins."
880
- msgstr "Dette vil være et incitament for mig til at forsætte med at programmere, udvikle yderligere tiltag og bruge uendeligt mange timer på support. Du får brugbar software og jeg får muligheden for at blive ved med at udvikle det. Alle vinder."
881
-
882
- #: view/admin/support.php:13
883
- msgid "If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>."
884
- msgstr "Hvis du benytter dette plugin i kommercielt øjemed eller føler at plugin'et er særdeles brugbart, vil jeg bede dig om at overveje en <strong>kommerciel donation</strong>."
885
-
886
- #: view/admin/support.php:36
887
- msgid "Individual<br/>Donation"
888
- msgstr "Individuel donation"
889
-
890
- #: view/admin/support.php:56
891
- msgid "Commercial<br/>Donation"
892
- msgstr "Kommerciel<br/>Donation"
893
-
894
- #: view/admin/support.php:60
895
- msgid "Translations"
896
- msgstr "Oversættelser"
897
-
898
- #: view/admin/support.php:62
899
- msgid "If you're multi-lingual then you may want to consider donating a translation:"
900
- msgstr "Hvis du er flersproget vil du måske overveje at donere en oversættelse:"
901
-
902
- #: view/admin/support.php:70
903
- msgid "All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter."
904
- msgstr "All oversættere vil få et link til deres website placeret på hjemmesiden for plugin'et på <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, udover at være en individuel supporter."
905
-
906
- #: view/admin/support.php:71
907
- msgid "Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
908
- msgstr "Alle detaljer for at oversætte et plugin kan findes i denne <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide til at oversætte WordPress Plugins</a>."
909
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-da_DK.mo DELETED
Binary file
locale/redirection-da_DK.po DELETED
@@ -1,991 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Redirection\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-22 17:38+0100\n"
6
- "PO-Revision-Date: 2013-12-05 08:40+0100\n"
7
- "Last-Translator: Mikael <mikael@husplushave.dk>\n"
8
- "Language-Team: Antphilosophy.com\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Language: da_DK\n"
15
- "X-Generator: Poedit 1.5.7\n"
16
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
-
20
- #: ajax.php:370
21
- msgid "Sorry, but your redirection was not created"
22
- msgstr "Beklager, men dit redirect blev ikke oprettet"
23
-
24
- #: redirection.php:94
25
- msgid "Settings"
26
- msgstr "Indstillinger"
27
-
28
- #: redirection.php:112
29
- msgid "Please wait..."
30
- msgstr "Vent venligst.."
31
-
32
- #: redirection.php:115
33
- msgid "Are you sure?"
34
- msgstr "Er du sikker?"
35
-
36
- #: redirection.php:116
37
- msgid "No items have been selected"
38
- msgstr "Ingen elementer blev valgt"
39
-
40
- #: redirection.php:121
41
- msgid "Redirection"
42
- msgstr "Redirection"
43
-
44
- #: redirection.php:159
45
- msgid "Your module was successfully created"
46
- msgstr "Dit modul blev oprettet succesfuldt"
47
-
48
- #: redirection.php:163
49
- msgid "Your module was not created - did you provide a name?"
50
- msgstr "Dit modul blev ikke oprettet - tilføjede du et navn?"
51
-
52
- #: redirection.php:228
53
- msgid "Your options were updated"
54
- msgstr "Dine indstillinger blev opdateret"
55
-
56
- #: redirection.php:236
57
- msgid "Redirection data has been deleted and the plugin disabled"
58
- msgstr "Redirection data blev slettet og plugin'et deaktiveret"
59
-
60
- #: redirection.php:248
61
- msgid "No items were imported"
62
- msgstr "Ingen redirects blev importeret"
63
-
64
- #: redirection.php:266
65
- msgid "Your logs have been deleted"
66
- msgstr "Dine logs blev slettet"
67
-
68
- #: redirection.php:289
69
- msgid "Your group was added successfully"
70
- msgstr "Din gruppe blev tilføjet succesfuldt"
71
-
72
- #: redirection.php:293
73
- msgid "Please specify a group name"
74
- msgstr "Tilføj venligst et gruppenavn"
75
-
76
- #: redirection.php:330
77
- msgid "Redirection is available in"
78
- msgstr "Redirection er tilgængelig i"
79
-
80
- #: fileio/csv.php:21
81
- #, php-format
82
- msgid "module_%d.csv"
83
- msgstr "module_%d.csv"
84
-
85
- #: fileio/xml.php:32
86
- #, php-format
87
- msgid "module_%d.xml"
88
- msgstr "module_%d.xml"
89
-
90
- #: fileio/xml.php:105
91
- #, php-format
92
- msgid "%s imported on %s at %s"
93
- msgstr "%s importeret i %s af %s"
94
-
95
- #: fileio/xml.php:168
96
- msgid "XML importing is only available with PHP5 - you have PHP4."
97
- msgstr "XML importering er kun tilgængeligt i PHP5 - du har PHP4."
98
-
99
- #: matches/login.php:25
100
- msgid "URL and login status"
101
- msgstr "URL og login status"
102
-
103
- #: matches/login.php:33
104
- msgid ""
105
- "The target URL will be chosen from one of the following URLs, depending if "
106
- "the user is logged in or out. Leaving a URL blank means that the user is "
107
- "not redirected."
108
- msgstr ""
109
- "Target URL vil blive valgt fra en af de følgende URLs, afhængig af om "
110
- "brugeen er logget ind eller ej. Hvis du lader en URL være blank betyder det, "
111
- "at brugeren ikke er redirected."
112
-
113
- #: matches/login.php:39 matches/login.php:41
114
- msgid "Logged In"
115
- msgstr "Logget Ind"
116
-
117
- #: matches/login.php:51 matches/login.php:53
118
- msgid "Logged Out"
119
- msgstr "Logget Ud"
120
-
121
- #: matches/referrer.php:28
122
- msgid "URL and referrer"
123
- msgstr "URL og henvisning"
124
-
125
- #: matches/referrer.php:40
126
- msgid "Referrer"
127
- msgstr "Henvisning"
128
-
129
- #: matches/referrer.php:43
130
- msgid "Regex"
131
- msgstr "Regex"
132
-
133
- #: matches/referrer.php:47 matches/url.php:40 matches/user_agent.php:57
134
- msgid "HTTP Code"
135
- msgstr "HTTP Kode"
136
-
137
- #: matches/referrer.php:57
138
- msgid ""
139
- "The visitor will be redirected from the source URL if the referrer matches. "
140
- "You can specify a <em>matched</em> target URL as the address to send "
141
- "visitors if they do match, and <em>not matched</em> if they don't match. "
142
- "Leaving a URL blank means that the visitor is not redirected."
143
- msgstr ""
144
- "Brugeren vil blive redirected fra kilde URL hvis henvisningen matcher. Du "
145
- "kan specificere en <em>matchende</em> target URL som den adresse hvor "
146
- "brugerne sendes hen, hvis de matcher og en <em>ikke matchende</em> hvis de "
147
- "ikke matcher. Lader du en URL være blank betyder det, at brugeren ikke "
148
- "redirectes."
149
-
150
- #: matches/referrer.php:63 matches/referrer.php:65 matches/user_agent.php:75
151
- #: matches/user_agent.php:77
152
- msgid "Matched"
153
- msgstr "Matcher"
154
-
155
- #: matches/referrer.php:73 matches/referrer.php:75 matches/user_agent.php:85
156
- #: matches/user_agent.php:87
157
- msgid "Not matched"
158
- msgstr "Matcher ikke"
159
-
160
- #: matches/url.php:25
161
- msgid "URL only"
162
- msgstr "Kun URL"
163
-
164
- #: matches/url.php:32
165
- msgid "Target URL"
166
- msgstr "Target URL"
167
-
168
- #: matches/user_agent.php:27
169
- msgid "URL and user agent"
170
- msgstr "URL og user agent"
171
-
172
- #: matches/user_agent.php:32
173
- msgid "FeedBurner"
174
- msgstr "FeedBurner"
175
-
176
- #: matches/user_agent.php:33
177
- msgid "Internet Explorer"
178
- msgstr "Internet Explorer"
179
-
180
- #: matches/user_agent.php:34
181
- msgid "FireFox"
182
- msgstr "Firefox"
183
-
184
- #: matches/user_agent.php:35
185
- msgid "Opera"
186
- msgstr "Opera"
187
-
188
- #: matches/user_agent.php:36
189
- msgid "Safari"
190
- msgstr "Safari"
191
-
192
- #: matches/user_agent.php:37
193
- msgid "iPhone"
194
- msgstr "iPhone"
195
-
196
- #: matches/user_agent.php:38
197
- msgid "iPad"
198
- msgstr "iPad"
199
-
200
- #: matches/user_agent.php:39
201
- msgid "Android"
202
- msgstr "Android"
203
-
204
- #: matches/user_agent.php:40
205
- msgid "Nintendo Wii"
206
- msgstr "Nintendo Wii"
207
-
208
- #: matches/user_agent.php:45
209
- msgid "User Agent"
210
- msgstr "User Agent"
211
-
212
- #: matches/user_agent.php:68
213
- msgid ""
214
- "The visitor will be redirected from the source URL if the user agent "
215
- "matches. You can specify a <em>matched</em> target URL as the address to "
216
- "send visitors if they do match, and <em>not matched</em> if they don't "
217
- "match. Leaving a URL blank means that the visitor is not redirected. "
218
- "<strong>All matches are performed as regular expressions</strong>.\n"
219
- msgstr ""
220
- "Brugeren vil blive redirected fra kilde URL hvis user agent matcher. Du kan "
221
- "specificere en <em>matchende</em> target URL som den adresse hvor brugerne "
222
- "sendes hen, hvis de matcher og <em>ikke matchende</em> hvis de ikke matcher. "
223
- "Hvis URL efterlades blank betyder det, at brugeren ikke redirectes. "
224
- "<strong>Alle matches foretages som regulære udtryk</strong>.\n"
225
-
226
- #: models/database.php:94 models/module.php:161
227
- msgid "WordPress"
228
- msgstr "WordPress"
229
-
230
- #: models/database.php:95 models/module.php:160
231
- msgid "Apache"
232
- msgstr "Apache"
233
-
234
- #: models/database.php:96
235
- msgid "404"
236
- msgstr "404"
237
-
238
- #: models/database.php:101
239
- msgid "Redirections"
240
- msgstr "Redirections"
241
-
242
- #: models/database.php:102
243
- msgid "Modified Posts"
244
- msgstr "Ændrede poster"
245
-
246
- #: models/group.php:194
247
- msgid "Yes"
248
- msgstr "Ja"
249
-
250
- #: models/group.php:195
251
- msgid "No"
252
- msgstr "Nej"
253
-
254
- #: models/module.php:162
255
- msgid "404 Errors"
256
- msgstr "404 Fejl"
257
-
258
- #: models/module.php:187
259
- msgid "Strip WWW"
260
- msgstr "Fjern WWW"
261
-
262
- #: models/module.php:187
263
- msgid "Force WWW"
264
- msgstr "Forcér WWW"
265
-
266
- #: models/module.php:192
267
- msgid "Strip index.php"
268
- msgstr "Fjern index.php"
269
-
270
- #: models/pager.php:404
271
- msgid "Previous"
272
- msgstr "Forrige"
273
-
274
- #: models/pager.php:405
275
- msgid "Next"
276
- msgstr "Næste"
277
-
278
- #: models/pager.php:463
279
- #, php-format
280
- msgid "%d per-page"
281
- msgstr "%d pr. side"
282
-
283
- #: models/pager.php:472
284
- #, php-format
285
- msgid "Displaying %s&#8211;%s of %s"
286
- msgstr "Viser %s&#8211;%s af %s"
287
-
288
- #: models/redirect.php:386
289
- msgid "Redirect to URL"
290
- msgstr "Redirect til URL"
291
-
292
- #: models/redirect.php:387
293
- msgid "Redirect to random post"
294
- msgstr "Redirect til tilfældigt indlæg"
295
-
296
- #: models/redirect.php:388
297
- msgid "Pass-through"
298
- msgstr "Pass-through"
299
-
300
- #: models/redirect.php:389
301
- msgid "Error (404)"
302
- msgstr "Fejl (404)"
303
-
304
- #: models/redirect.php:390
305
- msgid "Do nothing"
306
- msgstr "Gør ingenting"
307
-
308
- #: modules/404.php:37
309
- msgid "Log 404s"
310
- msgstr "Log 404"
311
-
312
- #: modules/404.php:46 modules/wordpress.php:121
313
- msgid ""
314
- "<strong>Disabled: You must enable <a href=\"options-permalink.php"
315
- "\">permalinks</a> before using this</strong>"
316
- msgstr ""
317
- "<strong>Deaktiveret: Du skal aktivere <a href=\"options-permalink.php"
318
- "\">permalinks</a> før du kan bruge det</strong>"
319
-
320
- #: modules/404.php:57
321
- msgid "<small>No options have been set</small>"
322
- msgstr "<small>Ingen indstillinger blev ændret</small>"
323
-
324
- #: modules/apache.php:77
325
- msgid "Location"
326
- msgstr "Lokation"
327
-
328
- #: modules/apache.php:82
329
- #, php-format
330
- msgid "WordPress is installed in: <code>%s</code>"
331
- msgstr "WordPress er installeret i: <code>%s</code>"
332
-
333
- #: modules/apache.php:87
334
- msgid "Canonical"
335
- msgstr "Canonical"
336
-
337
- #: modules/apache.php:90 modules/apache.php:96
338
- msgid "Leave as is"
339
- msgstr "Ingen ændriger"
340
-
341
- #: modules/apache.php:90
342
- #, php-format
343
- msgid "Strip WWW (%s)"
344
- msgstr "Fjern WWW (%s)"
345
-
346
- #: modules/apache.php:90
347
- #, php-format
348
- msgid "Force WWW (www.%s)"
349
- msgstr "Forcér WWW (www.%s)"
350
-
351
- #: modules/apache.php:94
352
- msgid "Strip Index"
353
- msgstr "Fjern Index"
354
-
355
- #: modules/apache.php:96
356
- msgid "Strip index files (html,php)"
357
- msgstr "Fjern index filer (html,php)"
358
-
359
- #: modules/apache.php:101
360
- msgid "Memory Limit"
361
- msgstr "Hukommelsesbegrænsning"
362
-
363
- #: modules/apache.php:104 modules/apache.php:109
364
- msgid "Server default"
365
- msgstr "Server default"
366
-
367
- #: modules/apache.php:107
368
- msgid "Error Level"
369
- msgstr "Fejl Level"
370
-
371
- #: modules/apache.php:109
372
- msgid "No errors"
373
- msgstr "Ingen fejl"
374
-
375
- #: modules/apache.php:109
376
- msgid "Show errors"
377
- msgstr "Vis fejl"
378
-
379
- #: modules/apache.php:114
380
- msgid "Ban IPs"
381
- msgstr "Ekskludér IPs"
382
-
383
- #: modules/apache.php:120
384
- msgid "Allow IPs"
385
- msgstr "Tillad IPs"
386
-
387
- #: modules/apache.php:126
388
- msgid "Raw .htaccess"
389
- msgstr "Rå .htaccess"
390
-
391
- #: modules/apache.php:132
392
- msgid "Site URL"
393
- msgstr "Site URL"
394
-
395
- #: modules/apache.php:135
396
- msgid "Advanced: For management of external sites"
397
- msgstr "Avanceret: For håndtering af eksterne sites"
398
-
399
- #: modules/apache.php:150
400
- msgid "<strong>Location is invalid - check that path exists</strong>"
401
- msgstr "<strong>Lokationen er ugyldig - check at stien eksisterer</strong>"
402
-
403
- #: modules/apache.php:156
404
- msgid ""
405
- "<strong>Could not write to configured <code>.htaccess</code> file - check "
406
- "file permissions</strong>"
407
- msgstr ""
408
- "<strong>Kunne ikke skrive til konfigurerede <code>.htaccess</code> fil - "
409
- "check fil tilladelser</strong>"
410
-
411
- #: modules/apache.php:163
412
- msgid ""
413
- "<strong>Disabled: enter the location of an <code>.htaccess</code> file for "
414
- "this to be valid</strong>"
415
- msgstr ""
416
- "<strong>Deaktiveret: indtast lokationen af <code>.htaccess</code> filen for "
417
- "at gøre dette validt</strong>"
418
-
419
- #: modules/apache.php:168
420
- msgid "strip WWW"
421
- msgstr "fjern WWW"
422
-
423
- #: modules/apache.php:168
424
- msgid "force WWW"
425
- msgstr "forcér WWW"
426
-
427
- #: modules/apache.php:171
428
- msgid "strip index"
429
- msgstr "fjern index"
430
-
431
- #: modules/apache.php:174
432
- #, php-format
433
- msgid "memory limit at %dMB"
434
- msgstr "Hukommelsesbegræsning på %dMB"
435
-
436
- #: modules/apache.php:177
437
- msgid "no errors"
438
- msgstr "ingen fejl"
439
-
440
- #: modules/apache.php:177
441
- msgid "show errors"
442
- msgstr "vis fejl"
443
-
444
- #: modules/apache.php:180
445
- msgid "IPs are banned"
446
- msgstr "IPs er ekskluderet"
447
-
448
- #: modules/apache.php:183
449
- msgid "IPs are allowed"
450
- msgstr "IPs er tilladte"
451
-
452
- #: view/admin/add.php:3
453
- msgid "Add new redirection"
454
- msgstr "Tilføj ny redirection."
455
-
456
- #: view/admin/add.php:6
457
- msgid "Your redirection has been added."
458
- msgstr "Dit redirect er tilføjet."
459
-
460
- #: view/admin/add.php:12
461
- msgid "Source URL"
462
- msgstr "Kilde URL"
463
-
464
- #: view/admin/add.php:16
465
- msgid "Match"
466
- msgstr "Match"
467
-
468
- #: view/admin/add.php:22
469
- msgid "Action"
470
- msgstr "Action"
471
-
472
- #: view/admin/add.php:27
473
- msgid "Regular expression"
474
- msgstr "Regulært udtryk"
475
-
476
- #: view/admin/add.php:36
477
- msgid "Group"
478
- msgstr "Gruppe"
479
-
480
- #: view/admin/add.php:43
481
- msgid "Add Redirection"
482
- msgstr "Tilføj redirect"
483
-
484
- #: view/admin/group_edit.php:6 view/admin/group_list.php:37
485
- #: view/admin/group_list.php:100 view/admin/module_edit.php:18
486
- #: view/admin/module_list.php:42
487
- msgid "Name"
488
- msgstr "Navn"
489
-
490
- #: view/admin/group_edit.php:10
491
- msgid "Tracked"
492
- msgstr "Tracked"
493
-
494
- #: view/admin/group_edit.php:11
495
- msgid "Whether to track 'hits' to items"
496
- msgstr "Antal 'hits' til hver redirect "
497
-
498
- #: view/admin/group_edit.php:14
499
- msgid "Enabled"
500
- msgstr "Aktiveret"
501
-
502
- #: view/admin/group_edit.php:15
503
- msgid "Disabling a group will disable all items contained within it"
504
- msgstr ""
505
- "Deaktivering af en gruppe vil deaktivere all objekter indeholdt i gruppen"
506
-
507
- #: view/admin/group_edit.php:20 view/admin/item_edit.php:27
508
- #: view/admin/module_edit.php:27
509
- msgid "Save"
510
- msgstr "Gem"
511
-
512
- #: view/admin/group_edit.php:21 view/admin/item_edit.php:28
513
- #: view/admin/module_edit.php:28
514
- msgid "Cancel"
515
- msgstr "Annullér"
516
-
517
- #: view/admin/group_item.php:3
518
- msgid "edit group"
519
- msgstr "redigér gruppe"
520
-
521
- #: view/admin/group_item.php:23 view/admin/item.php:27
522
- msgid "disabled"
523
- msgstr "deaktiveret"
524
-
525
- #: view/admin/group_list.php:6
526
- msgid "Groups for module"
527
- msgstr "Grupper for moduler"
528
-
529
- #: view/admin/group_list.php:16 view/admin/log.php:38
530
- msgid "Module"
531
- msgstr "Modul"
532
-
533
- #: view/admin/group_list.php:21 view/admin/item_list.php:29
534
- #: view/admin/log.php:16 view/admin/log.php:23
535
- msgid "Search"
536
- msgstr "Søg"
537
-
538
- #: view/admin/group_list.php:26
539
- msgid "go"
540
- msgstr "send"
541
-
542
- #: view/admin/group_list.php:36 view/admin/item_list.php:42
543
- #: view/admin/module_list.php:17
544
- msgid "Hits"
545
- msgstr "Hits"
546
-
547
- #: view/admin/group_list.php:59 view/admin/item_list.php:67
548
- msgid "Select All"
549
- msgstr "Vælg Alle"
550
-
551
- #: view/admin/group_list.php:60 view/admin/item_list.php:68
552
- msgid "Toggle"
553
- msgstr "Skift"
554
-
555
- #: view/admin/group_list.php:61 view/admin/item_list.php:69
556
- msgid "Reset Hits"
557
- msgstr "Nulstil Hits"
558
-
559
- #: view/admin/group_list.php:62 view/admin/item_list.php:70
560
- #: view/admin/log.php:30 view/admin/options.php:120
561
- msgid "Delete"
562
- msgstr "Slet"
563
-
564
- #: view/admin/group_list.php:64 view/admin/item_list.php:72
565
- msgid "Move To"
566
- msgstr "Flyt til"
567
-
568
- #: view/admin/group_list.php:69 view/admin/item_list.php:34
569
- #: view/admin/item_list.php:77
570
- msgid "Go"
571
- msgstr "Send"
572
-
573
- #: view/admin/group_list.php:75 view/admin/item_list.php:83
574
- msgid "re-order"
575
- msgstr "Sorter"
576
-
577
- #: view/admin/group_list.php:76 view/admin/item_list.php:84
578
- msgid "save order"
579
- msgstr "gem opstilling"
580
-
581
- #: view/admin/group_list.php:89
582
- msgid "You have no groups in this module."
583
- msgstr "Du har ingen grupper i modulet"
584
-
585
- #: view/admin/group_list.php:94
586
- msgid "Add Group"
587
- msgstr "Tilføj gruppe"
588
-
589
- #: view/admin/group_list.php:105
590
- msgid "Add"
591
- msgstr "Tilføj"
592
-
593
- #: view/admin/item_edit.php:3
594
- #, php-format
595
- msgid "%s by matching %s"
596
- msgstr "%s ved at matche %s"
597
-
598
- #: view/admin/item_edit.php:7
599
- msgid "Title"
600
- msgstr "Titel"
601
-
602
- #: view/admin/item_edit.php:10
603
- msgid "optional"
604
- msgstr "valgfri"
605
-
606
- #: view/admin/item_list.php:7
607
- msgid "Redirections for group"
608
- msgstr "Redirections for gruppe"
609
-
610
- #: view/admin/item_list.php:41
611
- msgid "Last Access"
612
- msgstr "Sidste adgang"
613
-
614
- #: view/admin/item_list.php:43 view/admin/module_list.php:46
615
- msgid "Type"
616
- msgstr "Type"
617
-
618
- #: view/admin/item_list.php:44
619
- msgid "URL"
620
- msgstr "URL"
621
-
622
- #: view/admin/item_list.php:44
623
- msgid "Position"
624
- msgstr "Position"
625
-
626
- #: view/admin/item_list.php:88
627
- msgid "You have no redirections."
628
- msgstr "Du har ingen redirects"
629
-
630
- #: view/admin/log.php:6
631
- msgid "Redirection Log"
632
- msgstr "Redirection Log"
633
-
634
- #: view/admin/log.php:29
635
- msgid "Bulk Actions"
636
- msgstr "Flere handlinger"
637
-
638
- #: view/admin/log.php:33
639
- msgid "Apply"
640
- msgstr "Tilføj"
641
-
642
- #: view/admin/log.php:49
643
- msgid "Filter"
644
- msgstr "Filter"
645
-
646
- #: view/admin/log.php:67
647
- msgid "Date"
648
- msgstr "Dato"
649
-
650
- #: view/admin/log.php:70
651
- msgid "IP"
652
- msgstr "IP"
653
-
654
- #: view/admin/log.php:85
655
- msgid "There are no logs to display!"
656
- msgstr "Der er ingen logs at vise"
657
-
658
- #: view/admin/log.php:94
659
- msgid "Process Current Logs"
660
- msgstr "Proces for nuværende logs"
661
-
662
- #: view/admin/log.php:95
663
- msgid ""
664
- "These actions will affect all currently available logs (i.e. your search "
665
- "phrase will restrict the log items)."
666
- msgstr ""
667
- "Tilføjelserne vil påvirke alle nuværende tilgængelige logs (dvs. din "
668
- "søgeforespørgsel vil filtrere de forskellige logs)"
669
-
670
- #: view/admin/log.php:100
671
- msgid "Delete Logs"
672
- msgstr "Fjern logs"
673
-
674
- #: view/admin/log_item_details.php:9
675
- msgid "Redirect to"
676
- msgstr "Redirect til"
677
-
678
- #: view/admin/log_item_details.php:15
679
- msgid "Redirected by"
680
- msgstr "Redirected af"
681
-
682
- #: view/admin/log_item_details.php:16
683
- msgid "for"
684
- msgstr "For"
685
-
686
- #: view/admin/module_item.php:23
687
- msgid "View as"
688
- msgstr "Vis som"
689
-
690
- #: view/admin/module_item.php:25
691
- msgid "CSV"
692
- msgstr "CSV"
693
-
694
- #: view/admin/module_item.php:26
695
- msgid "XML"
696
- msgstr "XML"
697
-
698
- #: view/admin/module_item.php:28
699
- msgid "RSS"
700
- msgstr "RSS"
701
-
702
- #: view/admin/module_item.php:41
703
- msgid "edit"
704
- msgstr "redigér"
705
-
706
- #: view/admin/module_item.php:43
707
- msgid "delete"
708
- msgstr "slet"
709
-
710
- #: view/admin/module_item.php:45
711
- msgid "reset"
712
- msgstr "nulstil"
713
-
714
- #: view/admin/module_list.php:6 view/admin/submenu.php:16
715
- msgid "Modules"
716
- msgstr "Moduler"
717
-
718
- #: view/admin/module_list.php:14
719
- msgid "Details"
720
- msgstr "Detaljer"
721
-
722
- #: view/admin/module_list.php:15 view/admin/submenu.php:11
723
- msgid "Groups"
724
- msgstr "Grupper"
725
-
726
- #: view/admin/module_list.php:16
727
- msgid "Items"
728
- msgstr "Objekter"
729
-
730
- #: view/admin/module_list.php:18
731
- msgid "Operations"
732
- msgstr "Operationer"
733
-
734
- #: view/admin/module_list.php:27
735
- msgid "Note: Hits are dependant on log entries"
736
- msgstr "Bemærk: Hits er afhængig af log tilføjelser"
737
-
738
- #: view/admin/module_list.php:29
739
- msgid "You have no modules defined yet"
740
- msgstr "Du har ikke defineret nogle moduler endnu"
741
-
742
- #: view/admin/module_list.php:34
743
- msgid "Add Module"
744
- msgstr "Tilføj Modul"
745
-
746
- #: view/admin/module_list.php:35
747
- msgid ""
748
- "A module is a controlling element that determines how redirections are "
749
- "handled. Elements in a WordPress module are handled by WordPress, elements "
750
- "in an Apache module are handled by <code>.htaccess</code>, and elements in a "
751
- "404 module affect how 404 errors are logged."
752
- msgstr ""
753
- "Et modul er et element, der kontrollerer hvordan redirects håndteres. "
754
- "Elementer i et WordPress modul er håndteret af WordPress, elementer i et "
755
- "Apache modul er håndteret i <code>.htaccess</code>, og elementer i et 404 "
756
- "modul påvirker hvordan 404 fejl er gemt."
757
-
758
- #: view/admin/module_list.php:55
759
- msgid "Create"
760
- msgstr "Tilføj"
761
-
762
- #: view/admin/options.php:6 view/admin/submenu.php:26
763
- msgid "Options"
764
- msgstr "Indstillinger"
765
-
766
- #: view/admin/options.php:15
767
- msgid "Auto-generate URL"
768
- msgstr "Auto-generér URL"
769
-
770
- #: view/admin/options.php:19
771
- msgid ""
772
- "This will be used to auto-generate a URL if no URL is given. You can use "
773
- "the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal "
774
- "or hex)"
775
- msgstr ""
776
- "Dette vil blive brugt til at auto-generere en URL hvis ingen URL er givet. "
777
- "Du kan bruge specielle tags $dec$ eller $hex$ for at indsætte en unik ID "
778
- "(enten decimal eller hex)"
779
-
780
- #: view/admin/options.php:24
781
- msgid "IP Lookup Service"
782
- msgstr "IP Lookup Service"
783
-
784
- #: view/admin/options.php:30
785
- msgid "Plugin Support"
786
- msgstr "Plugin Support"
787
-
788
- #: view/admin/options.php:33
789
- msgid "I'm a nice person and I have helped support the author of this plugin"
790
- msgstr ""
791
- "Jeg er en flink person og jeg har hjulpet vedkommende, der har udarbejdet "
792
- "dette plugin."
793
-
794
- #: view/admin/options.php:37
795
- msgid "Logging"
796
- msgstr "Logging"
797
-
798
- #: view/admin/options.php:40
799
- msgid "log redirected requests"
800
- msgstr "log redirectede forespørgelser"
801
-
802
- #: view/admin/options.php:42
803
- msgid "log 404 Not Found requests"
804
- msgstr "log 404 ikke fundet forespørgelser"
805
-
806
- #: view/admin/options.php:43
807
- msgid ""
808
- "Uncheck one or both of these to turn off logging and reduce database load if "
809
- "your redirected URLs are hit very frequently, and/or your site is very busy "
810
- "and pages are often not found."
811
- msgstr ""
812
- "Fravælg en eller begge af disse for at fjerne logging og reducér database "
813
- "load hvis dine redirectede URLs bliver forespurgt på hyppigt, og/eller hvis "
814
- "dit website er meget besøgt eller siderne ofte ikke kan findes."
815
-
816
- #: view/admin/options.php:47
817
- msgid "Expire Logs"
818
- msgstr "Logs udløber efter"
819
-
820
- #: view/admin/options.php:50
821
- msgid "days (enter 0 for no expiry)"
822
- msgstr "dage (indtast 0 for ingen udløbsdato)"
823
-
824
- #: view/admin/options.php:54
825
- msgid "RSS Token"
826
- msgstr "RSS Token"
827
-
828
- #: view/admin/options.php:57
829
- msgid ""
830
- "A unique token allowing feed readers access to Redirection RSS (leave blank "
831
- "to auto-generate)"
832
- msgstr ""
833
- "En unik token der tillader feed readers adgang til Redirection RSS (undgå at "
834
- "udfylde for at auto-generere)"
835
-
836
- #: view/admin/options.php:62
837
- msgid "URL Monitoring"
838
- msgstr "URL Monitorering"
839
-
840
- #: view/admin/options.php:63
841
- msgid ""
842
- "You can have Redirection detect changes in URLs and have an automatic "
843
- "redirection created in a specific group."
844
- msgstr ""
845
- "Du kan sætte Redirection til at opdage ændringer i URLs automatisk og "
846
- "opsætte automatiske redirections i en specifik gruppe."
847
-
848
- #: view/admin/options.php:67
849
- msgid "Post &amp; Page URLs"
850
- msgstr "Indlæg og Side URLs"
851
-
852
- #: view/admin/options.php:70 view/admin/options.php:82
853
- msgid "Don't monitor"
854
- msgstr "Monitorér ikke"
855
-
856
- #: view/admin/options.php:74
857
- msgid "Monitor new posts"
858
- msgstr "Monitorér nye indlæg"
859
-
860
- #: view/admin/options.php:79
861
- msgid "Category URLs"
862
- msgstr "Kategori URLs"
863
-
864
- #: view/admin/options.php:89
865
- msgid "Update"
866
- msgstr "Opdatér"
867
-
868
- #: view/admin/options.php:95
869
- msgid "Import"
870
- msgstr "Importér"
871
-
872
- #: view/admin/options.php:97
873
- msgid ""
874
- "Here you can import redirections from an existing .htaccess file, a CSV "
875
- "file, or a Redirection XML."
876
- msgstr ""
877
- "Her kan du importere redirections fra en eksisterende .htaccess fil, en csv "
878
- "fil, eller en Redirection XML."
879
-
880
- #: view/admin/options.php:104
881
- msgid "Import into"
882
- msgstr "Importér i"
883
-
884
- #: view/admin/options.php:107
885
- msgid "Upload"
886
- msgstr "Upload"
887
-
888
- #: view/admin/options.php:110
889
- msgid "Note that the group is ignored when uploading an XML file."
890
- msgstr "Bemærk at gruppen er ignoreret når du uploader en XML fil."
891
-
892
- #: view/admin/options.php:114
893
- msgid "Delete Redirection"
894
- msgstr "Fjern Rediretion."
895
-
896
- #: view/admin/options.php:115
897
- msgid ""
898
- "Selecting this option will delete all redirections, all logs, and any "
899
- "options associated with the Redirection plugin. Make sure this is what you "
900
- "want to do."
901
- msgstr ""
902
- "Ved at vælge denne mulighed sletter du alle redirections, alle logs, og alle "
903
- "indstillinger associeret med plugin'et Redirection. Vær helt sikker på at "
904
- "det er det, du vil."
905
-
906
- #: view/admin/submenu.php:6
907
- msgid "Redirects"
908
- msgstr "Redirects"
909
-
910
- #: view/admin/submenu.php:21
911
- msgid "Log"
912
- msgstr "Log"
913
-
914
- #: view/admin/submenu.php:31
915
- msgid "Support"
916
- msgstr "Support"
917
-
918
- #: view/admin/support.php:5
919
- msgid "Redirection Support"
920
- msgstr "Redirection Support"
921
-
922
- #: view/admin/support.php:9
923
- msgid ""
924
- "Redirection is free to use - life is wonderful and lovely! However, it has "
925
- "required a great deal of time and effort to develop and if it has been "
926
- "useful you can help support this development by <strong>making a small "
927
- "donation</strong>."
928
- msgstr ""
929
- "Redirection er gratis at bruge - livet er fantastisk og perfekt. Men "
930
- "Redirection har taget lang tid at udvikle, så hvis du finder det brugbart, "
931
- "kan du hjælpe med at supportere udviklingen yderligere ved at <strong>donere "
932
- "et lille beløb</strong>."
933
-
934
- #: view/admin/support.php:10
935
- msgid ""
936
- "This will act as an incentive for me to carry on developing, providing "
937
- "countless hours of support, and including new features and suggestions. You "
938
- "get some useful software and I get to carry on making it. Everybody wins."
939
- msgstr ""
940
- "Dette vil være et incitament for mig til at forsætte med at programmere, "
941
- "udvikle yderligere tiltag og bruge uendeligt mange timer på support. Du får "
942
- "brugbar software og jeg får muligheden for at blive ved med at udvikle det. "
943
- "Alle vinder."
944
-
945
- #: view/admin/support.php:13
946
- msgid ""
947
- "If you are using this plugin in a commercial setup, or feel that it's been "
948
- "particularly useful, then you may want to consider a <strong>commercial "
949
- "donation</strong>."
950
- msgstr ""
951
- "Hvis du benytter dette plugin i kommercielt øjemed eller føler at plugin'et "
952
- "er særdeles brugbart, vil jeg bede dig om at overveje en <strong>kommerciel "
953
- "donation</strong>."
954
-
955
- #: view/admin/support.php:36
956
- msgid "Individual<br/>Donation"
957
- msgstr "Individuel donation"
958
-
959
- #: view/admin/support.php:56
960
- msgid "Commercial<br/>Donation"
961
- msgstr "Kommerciel<br/>Donation"
962
-
963
- #: view/admin/support.php:60
964
- msgid "Translations"
965
- msgstr "Oversættelser"
966
-
967
- #: view/admin/support.php:62
968
- msgid ""
969
- "If you're multi-lingual then you may want to consider donating a translation:"
970
- msgstr ""
971
- "Hvis du er flersproget vil du måske overveje at donere en oversættelse:"
972
-
973
- #: view/admin/support.php:70
974
- msgid ""
975
- "All translators will have a link to their website placed on the plugin "
976
- "homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/"
977
- "\">UrbanGiraffe</a>, in addition to being an individual supporter."
978
- msgstr ""
979
- "All oversættere vil få et link til deres website placeret på hjemmesiden for "
980
- "plugin'et på <a href=\"http://urbangiraffe.com/plugins/redirection/"
981
- "\">UrbanGiraffe</a>, udover at være en individuel supporter."
982
-
983
- #: view/admin/support.php:71
984
- msgid ""
985
- "Full details of producing a translation can be found in this <a href="
986
- "\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/"
987
- "\">guide to translating WordPress plugins</a>."
988
- msgstr ""
989
- "Alle detaljer for at oversætte et plugin kan findes i denne <a href=\"http://"
990
- "urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide "
991
- "til at oversætte WordPress Plugins</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-de_DE.po CHANGED
@@ -569,7 +569,7 @@ msgstr "Es hat nicht geklappt, als ich es wieder versuchte."
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr ""
571
 
572
- #: redirection-admin.php:175
573
  msgid "Log entries (%d max)"
574
  msgstr "Log Einträge (%d max)"
575
 
@@ -852,7 +852,7 @@ msgstr "Download"
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
- #: redirection-admin.php:155
856
  msgid "Settings"
857
  msgstr "Einstellungen"
858
 
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr ""
571
 
572
+ #: redirection-admin.php:174
573
  msgid "Log entries (%d max)"
574
  msgstr "Log Einträge (%d max)"
575
 
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
+ #: redirection-admin.php:154
856
  msgid "Settings"
857
  msgstr "Einstellungen"
858
 
locale/redirection-el_GR.mo DELETED
Binary file
locale/redirection-el_GR.po DELETED
@@ -1,929 +0,0 @@
1
- # Copyright (C) 2010 Redirection
2
- # This file is distributed under the same license as the Redirection package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Redirection 2.2.5\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
7
- "POT-Creation-Date: 2011-07-17 10:14:58+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: 2011-07-18 05:48+0200\n"
12
- "Last-Translator: Titanas <stefanos.kofopoulos@gmail.com>\n"
13
- "Language-Team: Titanas <stefanos.kofopoulos@gmail.com>\n"
14
- "X-Poedit-Language: Greek\n"
15
- "X-Poedit-Country: GREECE\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
-
18
- #: fileio/csv.php:21
19
- msgid "module_%d.csv"
20
- msgstr "module_%d.csv"
21
-
22
- #: fileio/xml.php:32
23
- msgid "module_%d.xml"
24
- msgstr "module_%d.xml"
25
-
26
- #: fileio/xml.php:105
27
- msgid "%s imported on %s at %s"
28
- msgstr "%s εισήχθη στο %s σε %s"
29
-
30
- #: fileio/xml.php:168
31
- msgid "XML importing is only available with PHP5 - you have PHP4."
32
- msgstr "Η εισαγωγή XML είναι εφικτή με PHP5 - χρησιμοποιείτε PHP4."
33
-
34
- #: view/admin/group_list.php:6
35
- msgid "Groups for module"
36
- msgstr "Ομάδες module"
37
-
38
- #: view/admin/group_list.php:16
39
- #: view/admin/log.php:38
40
- msgid "Module"
41
- msgstr "Module"
42
-
43
- #: view/admin/group_list.php:21
44
- #: view/admin/log.php:16
45
- #: view/admin/log.php:23
46
- #: view/admin/item_list.php:29
47
- msgid "Search"
48
- msgstr "Αναζήτηση"
49
-
50
- #: view/admin/group_list.php:26
51
- msgid "go"
52
- msgstr "τώρα"
53
-
54
- #: view/admin/group_list.php:36
55
- #: view/admin/item_list.php:42
56
- #: view/admin/module_list.php:17
57
- msgid "Hits"
58
- msgstr "Hits"
59
-
60
- #: view/admin/group_list.php:37
61
- #: view/admin/group_list.php:100
62
- #: view/admin/module_edit.php:18
63
- #: view/admin/module_list.php:42
64
- #: view/admin/group_edit.php:6
65
- msgid "Name"
66
- msgstr "Όνομα"
67
-
68
- #: view/admin/group_list.php:59
69
- #: view/admin/item_list.php:67
70
- msgid "Select All"
71
- msgstr "Επιλογή όλων"
72
-
73
- #: view/admin/group_list.php:60
74
- #: view/admin/item_list.php:68
75
- msgid "Toggle"
76
- msgstr "Toggle"
77
-
78
- #: view/admin/group_list.php:61
79
- #: view/admin/item_list.php:69
80
- msgid "Reset Hits"
81
- msgstr "Μηδενισμός"
82
-
83
- #: view/admin/group_list.php:62
84
- #: view/admin/log.php:30
85
- #: view/admin/item_list.php:70
86
- #: view/admin/options.php:120
87
- msgid "Delete"
88
- msgstr "Διαγραφή"
89
-
90
- #: view/admin/group_list.php:64
91
- #: view/admin/item_list.php:72
92
- msgid "Move To"
93
- msgstr "Μεταφορά σε"
94
-
95
- #: view/admin/group_list.php:69
96
- #: view/admin/item_list.php:34
97
- #: view/admin/item_list.php:77
98
- msgid "Go"
99
- msgstr "Τώρα"
100
-
101
- #: view/admin/group_list.php:75
102
- #: view/admin/item_list.php:83
103
- msgid "re-order"
104
- msgstr "αναδιοργάνωση"
105
-
106
- #: view/admin/group_list.php:76
107
- #: view/admin/item_list.php:84
108
- msgid "save order"
109
- msgstr "αποθήκευση σειράς"
110
-
111
- #: view/admin/group_list.php:89
112
- msgid "You have no groups in this module."
113
- msgstr "Δεν υπάρχουν ομάδες σε αυτό το module"
114
-
115
- #: view/admin/group_list.php:94
116
- msgid "Add Group"
117
- msgstr "Προσθήκη ομάδας"
118
-
119
- #: view/admin/group_list.php:105
120
- msgid "Add"
121
- msgstr "Προσθήκη"
122
-
123
- #: view/admin/group_list.php:117
124
- #: view/admin/log.php:112
125
- #: view/admin/item_list.php:112
126
- #: redirection.php:116
127
- msgid "No items have been selected"
128
- msgstr "Επιλέξτε κάτι"
129
-
130
- #: view/admin/group_list.php:118
131
- #: view/admin/log.php:113
132
- #: view/admin/item_list.php:113
133
- #: redirection.php:115
134
- msgid "Are you sure?"
135
- msgstr "Σίγουρα;"
136
-
137
- #: view/admin/submenu.php:6
138
- msgid "Redirects"
139
- msgstr "Redirects"
140
-
141
- #: view/admin/submenu.php:11
142
- #: view/admin/module_list.php:15
143
- msgid "Groups"
144
- msgstr "Ομάδες"
145
-
146
- #: view/admin/submenu.php:16
147
- #: view/admin/module_list.php:6
148
- msgid "Modules"
149
- msgstr "Modules"
150
-
151
- #: view/admin/submenu.php:21
152
- msgid "Log"
153
- msgstr "Αρχείο"
154
-
155
- #: view/admin/submenu.php:26
156
- #: view/admin/options.php:6
157
- msgid "Options"
158
- msgstr "Επιλογές"
159
-
160
- #: view/admin/submenu.php:31
161
- msgid "Support"
162
- msgstr "Υποστήριξη"
163
-
164
- #: view/admin/module_item.php:23
165
- msgid "View as"
166
- msgstr "Προβολή ως"
167
-
168
- #: view/admin/module_item.php:25
169
- msgid "CSV"
170
- msgstr "CSV"
171
-
172
- #: view/admin/module_item.php:26
173
- msgid "XML"
174
- msgstr "XML"
175
-
176
- #: view/admin/module_item.php:27
177
- #: models/module.php:160
178
- #: models/database.php:95
179
- msgid "Apache"
180
- msgstr "Apache"
181
-
182
- #: view/admin/module_item.php:28
183
- msgid "RSS"
184
- msgstr "RSS"
185
-
186
- #: view/admin/module_item.php:41
187
- msgid "edit"
188
- msgstr "επεξεργασία"
189
-
190
- #: view/admin/module_item.php:43
191
- msgid "delete"
192
- msgstr "διαγραφή"
193
-
194
- #: view/admin/module_item.php:45
195
- msgid "reset"
196
- msgstr "μηδενισμός"
197
-
198
- #: view/admin/log.php:6
199
- msgid "Redirection Log"
200
- msgstr "Αρχείο"
201
-
202
- #: view/admin/log.php:29
203
- msgid "Bulk Actions"
204
- msgstr "Ομαδικές εργασίες"
205
-
206
- #: view/admin/log.php:33
207
- msgid "Apply"
208
- msgstr "Επιλογή"
209
-
210
- #: view/admin/log.php:43
211
- #: view/admin/item_list.php:24
212
- #: view/admin/add.php:36
213
- msgid "Group"
214
- msgstr "Ομάδα"
215
-
216
- #: view/admin/log.php:49
217
- msgid "Filter"
218
- msgstr "Φίλτρο"
219
-
220
- #: view/admin/log.php:67
221
- msgid "Date"
222
- msgstr "Ημερομηνία"
223
-
224
- #: view/admin/log.php:68
225
- #: view/admin/log_item_details.php:4
226
- #: view/admin/item_edit.php:15
227
- #: view/admin/add.php:12
228
- msgid "Source URL"
229
- msgstr "Διεύθυνση"
230
-
231
- #: view/admin/log.php:69
232
- #: matches/referrer.php:40
233
- msgid "Referrer"
234
- msgstr "από"
235
-
236
- #: view/admin/log.php:70
237
- msgid "IP"
238
- msgstr "IP"
239
-
240
- #: view/admin/log.php:85
241
- msgid "There are no logs to display!"
242
- msgstr "Δεν υπάρχει διαθέσιμο αρχείο"
243
-
244
- #: view/admin/log.php:94
245
- msgid "Process Current Logs"
246
- msgstr "Επεξεργασία αρχείου"
247
-
248
- #: view/admin/log.php:95
249
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
250
- msgstr "Η επιλογή αυτή θα επηρεάσει όλο το αποθηκευμένο αρχείο"
251
-
252
- #: view/admin/log.php:100
253
- msgid "Delete Logs"
254
- msgstr "Διαγραγή αρχείου"
255
-
256
- #: view/admin/item_list.php:7
257
- msgid "Redirections for group"
258
- msgstr "Redirection για ομάδες"
259
-
260
- #: view/admin/item_list.php:41
261
- msgid "Last Access"
262
- msgstr "Πρόσβαση"
263
-
264
- #: view/admin/item_list.php:43
265
- #: view/admin/module_list.php:46
266
- msgid "Type"
267
- msgstr "Τύπος"
268
-
269
- #: view/admin/item_list.php:44
270
- msgid "URL"
271
- msgstr "URL"
272
-
273
- #: view/admin/item_list.php:44
274
- msgid "Position"
275
- msgstr "Θέση"
276
-
277
- #: view/admin/item_list.php:88
278
- msgid "You have no redirections."
279
- msgstr "Καμία προώθηση"
280
-
281
- #: view/admin/log_item_details.php:9
282
- msgid "Redirect to"
283
- msgstr "Προώθηση σε"
284
-
285
- #: view/admin/log_item_details.php:15
286
- msgid "Redirected by"
287
- msgstr "Προώθηση από"
288
-
289
- #: view/admin/log_item_details.php:16
290
- msgid "for"
291
- msgstr "για"
292
-
293
- #: view/admin/log_item_details.php:20
294
- #: matches/user_agent.php:43
295
- msgid "User Agent"
296
- msgstr "User Agent"
297
-
298
- #: view/admin/item.php:27
299
- #: view/admin/group_item.php:23
300
- msgid "disabled"
301
- msgstr "ανενεργό"
302
-
303
- #: view/admin/item_edit.php:3
304
- msgid "%s by matching %s"
305
- msgstr "%s να ταιριάζει σε %s"
306
-
307
- #: view/admin/item_edit.php:7
308
- msgid "Title"
309
- msgstr "Τίτλος"
310
-
311
- #: view/admin/item_edit.php:10
312
- msgid "optional"
313
- msgstr "προαιρετικό"
314
-
315
- #: view/admin/item_edit.php:18
316
- #: matches/referrer.php:43
317
- msgid "Regex"
318
- msgstr "Regex"
319
-
320
- #: view/admin/item_edit.php:27
321
- #: view/admin/module_edit.php:27
322
- #: view/admin/group_edit.php:20
323
- msgid "Save"
324
- msgstr "Αποθήκευση"
325
-
326
- #: view/admin/item_edit.php:28
327
- #: view/admin/module_edit.php:28
328
- #: view/admin/group_edit.php:21
329
- msgid "Cancel"
330
- msgstr "Άκυρο"
331
-
332
- #: view/admin/add.php:3
333
- msgid "Add new redirection"
334
- msgstr "Προσθήκη νέας προώθησης"
335
-
336
- #: view/admin/add.php:6
337
- msgid "Your redirection has been added."
338
- msgstr "Η προσθήκη ήταν επιτυχής"
339
-
340
- #: view/admin/add.php:16
341
- msgid "Match"
342
- msgstr "Ταιριάζει"
343
-
344
- #: view/admin/add.php:22
345
- msgid "Action"
346
- msgstr "Επιλογές"
347
-
348
- #: view/admin/add.php:27
349
- msgid "Regular expression"
350
- msgstr "Regular expression"
351
-
352
- #: view/admin/add.php:31
353
- #: matches/url.php:32
354
- msgid "Target URL"
355
- msgstr "Διεύθυνση"
356
-
357
- #: view/admin/add.php:43
358
- msgid "Add Redirection"
359
- msgstr "Νέα προώθηση"
360
-
361
- #: view/admin/group_item.php:3
362
- msgid "edit group"
363
- msgstr "επεξεργασία ομάδας"
364
-
365
- #: view/admin/module_list.php:14
366
- msgid "Details"
367
- msgstr "Λεπτομέρειες"
368
-
369
- #: view/admin/module_list.php:16
370
- msgid "Items"
371
- msgstr "Στοιχεία"
372
-
373
- #: view/admin/module_list.php:18
374
- msgid "Operations"
375
- msgstr "Λειτουργίες"
376
-
377
- #: view/admin/module_list.php:27
378
- msgid "Note: Hits are dependant on log entries"
379
- msgstr "Ο αριθμός εμφανίσεων εξαρτάταιι από το αρχείο"
380
-
381
- #: view/admin/module_list.php:29
382
- msgid "You have no modules defined yet"
383
- msgstr "Δεν υπάρχουν module"
384
-
385
- #: view/admin/module_list.php:34
386
- msgid "Add Module"
387
- msgstr "Νέο module"
388
-
389
- #: view/admin/module_list.php:35
390
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
391
- msgstr "Το module ελέγχει τις προωθήσεις. Στοιχεία στο WordPress module ελέγχονται από το WordPress, στοιχεία στο Apache module ελέγχονται από το <code>.htaccess</code> ενώ τα στοιχεία στo 404 module καθορίζουν την συμπεριφορά του αρχείου σφαλμάτων 404."
392
-
393
- #: view/admin/module_list.php:55
394
- msgid "Create"
395
- msgstr "Δημιουργία"
396
-
397
- #: view/admin/support.php:5
398
- msgid "Redirection Support"
399
- msgstr "Υποστήριξη"
400
-
401
- #: view/admin/support.php:9
402
- msgid "Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>."
403
- msgstr "Το Redirection είναι δωρεάν για όλους αλλά η δημιουργία και η συντήρηση του plugin απαιτεί πολύ χρόνοα και προσπάθεια. Θα βοηθούσε ιδιαίτερα <strong>οποιαδήποτε δωρεά, ανεξαρτήτως ποσού</strong>."
404
-
405
- #: view/admin/support.php:10
406
- msgid "This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins."
407
- msgstr "Θα με βοηθήσετε να συνεχίσω να αναπτύσσω το plugin με νέα χαρακτηριστικά και υποδείξεις από εσάς. Κερδίζετε λογισμισκό που λύνει τα προβήματα σας και εγώ λίγα χρήματα."
408
-
409
- #: view/admin/support.php:13
410
- msgid "If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>."
411
- msgstr "Αν χρησιμοποιείτε το plugin για εμποριδκό σκοπό ή πιστεύετε ότι είναι χρήσιμο, μπορείτε να προχωρήσετε σε <strong>δωρεά για αυτό τον σκοπό</strong>."
412
-
413
- #: view/admin/support.php:36
414
- msgid "Individual<br/>Donation"
415
- msgstr "Ιδιώτες<br/>Δωρεά"
416
-
417
- #: view/admin/support.php:56
418
- msgid "Commercial<br/>Donation"
419
- msgstr "Εμπορική χρήση<br/>Δωρεά"
420
-
421
- #: view/admin/support.php:60
422
- msgid "Translations"
423
- msgstr "Μεταφράσεις"
424
-
425
- #: view/admin/support.php:62
426
- msgid "If you're multi-lingual then you may want to consider donating a translation:"
427
- msgstr "Μπορείτε να βοηθήσετε στην μετάφραση!"
428
-
429
- #: view/admin/support.php:70
430
- msgid "All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, in addition to being an individual supporter."
431
- msgstr "Όλοι οι μεταφραστές θα λάβουν link από το site του plugin <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a>, με επιπλέον την διάκριση ως ιδιώτης υποστηρικτής"
432
-
433
- #: view/admin/support.php:71
434
- msgid "Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
435
- msgstr "Όλες οι πληροφορίες για την δημιουργία νέας μετάφρασης βρίσκονται στον <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">οδηγό μετάφρασης WordPress plugins</a>."
436
-
437
- #: view/admin/options.php:15
438
- msgid "Auto-generate URL"
439
- msgstr "Αυτόματη δημιουργία URL"
440
-
441
- #: view/admin/options.php:19
442
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
443
- msgstr "Χρησιμοποιείται στην αυτόματη δημιουργία URL αν δεν έχει οριστεί κάποιο. Εφικτή η χρήση $dec$ ή $hex$ ως μοναδικά χαρακτηριστικά (ID) (decimal ή hex)"
444
-
445
- #: view/admin/options.php:24
446
- msgid "IP Lookup Service"
447
- msgstr "Έρευση IP"
448
-
449
- #: view/admin/options.php:30
450
- msgid "Plugin Support"
451
- msgstr "Υποστήριξη"
452
-
453
- #: view/admin/options.php:33
454
- msgid "I'm a nice person and I have helped support the author of this plugin"
455
- msgstr "Έχω ήδη υποστηρίξει με δωρεά το plugin"
456
-
457
- #: view/admin/options.php:37
458
- msgid "Logging"
459
- msgstr "Αρχείο"
460
-
461
- #: view/admin/options.php:40
462
- msgid "log redirected requests"
463
- msgstr "αρχείο προωθήσεων"
464
-
465
- #: view/admin/options.php:42
466
- msgid "log 404 Not Found requests"
467
- msgstr "αρχείο σφάλματος 404 "
468
-
469
- #: view/admin/options.php:43
470
- msgid "Uncheck one or both of these to turn off logging and reduce database load if your redirected URLs are hit very frequently, and/or your site is very busy and pages are often not found."
471
- msgstr "Απενεργοποίηση του ενός ή και των δύο επιλογών για μείωση του φόρτου στην βάδη δεδομένων, συνίσταται για sites με αυξημένη επισκεψιμότητα."
472
-
473
- #: view/admin/options.php:47
474
- msgid "Expire Logs"
475
- msgstr "Παλιό αρχείο"
476
-
477
- #: view/admin/options.php:50
478
- msgid "days (enter 0 for no expiry)"
479
- msgstr "ημέρες (0 για πάντα)"
480
-
481
- #: view/admin/options.php:54
482
- msgid "RSS Token"
483
- msgstr "RSS Token"
484
-
485
- #: view/admin/options.php:57
486
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
487
- msgstr "Μοναδικό token που επιτρέπει πρόσβαση feed readers στο Redirection RSS (κενό για αυτόματη δημιουργία)"
488
-
489
- #: view/admin/options.php:62
490
- msgid "URL Monitoring"
491
- msgstr "Παρακολούθηση URL"
492
-
493
- #: view/admin/options.php:63
494
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
495
- msgstr "Το Redirection μπορεί να παρακολουθεί τις αλλαγές και να δημιουργεί αυτόματα προωθήσεις στην κατάλληλη ομάδα."
496
-
497
- #: view/admin/options.php:67
498
- msgid "Post &amp; Page URLs"
499
- msgstr "URL άρθρου &amp; σελίδας"
500
-
501
- #: view/admin/options.php:70
502
- #: view/admin/options.php:82
503
- msgid "Don't monitor"
504
- msgstr "Χωρίς παρακολούθηση"
505
-
506
- #: view/admin/options.php:74
507
- msgid "Monitor new posts"
508
- msgstr "Παρακολούθηση νέων άρθρων"
509
-
510
- #: view/admin/options.php:79
511
- msgid "Category URLs"
512
- msgstr "Κατηγορίες URLs"
513
-
514
- #: view/admin/options.php:89
515
- msgid "Update"
516
- msgstr "Ενημέρωση"
517
-
518
- #: view/admin/options.php:95
519
- msgid "Import"
520
- msgstr "Εισαγωγή"
521
-
522
- #: view/admin/options.php:97
523
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
524
- msgstr "Εισαγωγή προωθήσεων από αρχείο .htaccess ή CSV ή Redirection XML."
525
-
526
- #: view/admin/options.php:104
527
- msgid "Import into"
528
- msgstr "Εισαγωγή σε"
529
-
530
- #: view/admin/options.php:107
531
- msgid "Upload"
532
- msgstr "Φόρτωση"
533
-
534
- #: view/admin/options.php:110
535
- msgid "Note that the group is ignored when uploading an XML file."
536
- msgstr "Η ομάδα αγνοείται όταν χρησιμοποιείται αρχείο XML"
537
-
538
- #: view/admin/options.php:114
539
- msgid "Delete Redirection"
540
- msgstr "Διαγραφή Redirection"
541
-
542
- #: view/admin/options.php:115
543
- msgid "Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do."
544
- msgstr "Αυτή η επιλογή θα διαγράψει όλες τις προωθήσεις, όλο το αρχείο και όλες τις ρυθμίσεις του Redirection plugin. Βεβαιωθείτε ότι θέλετε να προχωρήσετε."
545
-
546
- #: view/admin/group_edit.php:10
547
- msgid "Tracked"
548
- msgstr "Παρακολουθείται ήδη"
549
-
550
- #: view/admin/group_edit.php:11
551
- msgid "Whether to track 'hits' to items"
552
- msgstr "Καταμέτρηση εμφανίσεων ή μη"
553
-
554
- #: view/admin/group_edit.php:14
555
- msgid "Enabled"
556
- msgstr "Ενεργοποιήθηκε"
557
-
558
- #: view/admin/group_edit.php:15
559
- msgid "Disabling a group will disable all items contained within it"
560
- msgstr "Η απενεργοποίηση ομάδας απενεργοποιεί όλα τα μέλη"
561
-
562
- #: modules/404.php:37
563
- msgid "Log 404s"
564
- msgstr "Αρχείο για 404"
565
-
566
- #: modules/404.php:46
567
- #: modules/wordpress.php:121
568
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
569
- msgstr "<strong>Απενεργοποιημένο: Πρέπει να ενεργοποιήσετε τα <a href=\"options-permalink.php\">permalinks</a> πριν την χρήση</strong>"
570
-
571
- #: modules/404.php:57
572
- msgid "<small>No options have been set</small>"
573
- msgstr "<small>Δεν έχουν οριστεί ρυθμίσεις</small>"
574
-
575
- #: modules/apache.php:77
576
- msgid "Location"
577
- msgstr "Τοποθεσία"
578
-
579
- #: modules/apache.php:82
580
- msgid "WordPress is installed in: <code>%s</code>"
581
- msgstr "Εγκατάσταση WordPress σε: <code>%s</code>"
582
-
583
- #: modules/apache.php:87
584
- msgid "Canonical"
585
- msgstr "Canonical"
586
-
587
- #: modules/apache.php:90
588
- #: modules/apache.php:96
589
- msgid "Leave as is"
590
- msgstr "ως έχει"
591
-
592
- #: modules/apache.php:90
593
- msgid "Strip WWW (%s)"
594
- msgstr "Χωρίς Strip WWW (%s)"
595
-
596
- #: modules/apache.php:90
597
- msgid "Force WWW (www.%s)"
598
- msgstr "Με Force WWW (www.%s)"
599
-
600
- #: modules/apache.php:94
601
- msgid "Strip Index"
602
- msgstr "χωρίς Index"
603
-
604
- #: modules/apache.php:96
605
- msgid "Strip index files (html,php)"
606
- msgstr "Χωρίς index (html,php)"
607
-
608
- #: modules/apache.php:101
609
- msgid "Memory Limit"
610
- msgstr "Όριο μνήμης"
611
-
612
- #: modules/apache.php:104
613
- #: modules/apache.php:109
614
- msgid "Server default"
615
- msgstr "Προεπιλογή"
616
-
617
- #: modules/apache.php:107
618
- msgid "Error Level"
619
- msgstr "Διαβάθμιση σφάλματος"
620
-
621
- #: modules/apache.php:109
622
- msgid "No errors"
623
- msgstr "Χωρίς σφάλμα"
624
-
625
- #: modules/apache.php:109
626
- msgid "Show errors"
627
- msgstr "Προβολή σφάλματος"
628
-
629
- #: modules/apache.php:114
630
- msgid "Ban IPs"
631
- msgstr "Απαγορευμένες IP"
632
-
633
- #: modules/apache.php:120
634
- msgid "Allow IPs"
635
- msgstr "Επιτρεπτές IP"
636
-
637
- #: modules/apache.php:126
638
- msgid "Raw .htaccess"
639
- msgstr "Raw .htaccess"
640
-
641
- #: modules/apache.php:132
642
- msgid "Site URL"
643
- msgstr "URL"
644
-
645
- #: modules/apache.php:135
646
- msgid "Advanced: For management of external sites"
647
- msgstr "Για προχωρημένους: διαχείριση εξωτερικών sites"
648
-
649
- #: modules/apache.php:150
650
- msgid "<strong>Location is invalid - check that path exists</strong>"
651
- msgstr "<strong>Λάθος τοποθεσία - ελέγξτε ξανά</strong>"
652
-
653
- #: modules/apache.php:156
654
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
655
- msgstr "<strong>Δεν ήταν δυνατή η εγγραφή στο <code>.htaccess</code> - ελέγξτε τις ρυθμίσεις</strong>"
656
-
657
- #: modules/apache.php:163
658
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
659
- msgstr "<strong>Ανενεργό: εισάγετε την τοποθεσία του <code>.htaccess</code> για να ενεργοποιηθεί</strong>"
660
-
661
- #: modules/apache.php:168
662
- msgid "strip WWW"
663
- msgstr "χωρίς WWW"
664
-
665
- #: modules/apache.php:168
666
- msgid "force WWW"
667
- msgstr "με WWW"
668
-
669
- #: modules/apache.php:171
670
- msgid "strip index"
671
- msgstr "χωρίς index"
672
-
673
- #: modules/apache.php:174
674
- msgid "memory limit at %dMB"
675
- msgstr "όριο μνήμης %dMB"
676
-
677
- #: modules/apache.php:177
678
- msgid "no errors"
679
- msgstr "χωρίς σφάλμα"
680
-
681
- #: modules/apache.php:177
682
- msgid "show errors"
683
- msgstr "Προβολή σφάλματος"
684
-
685
- #: modules/apache.php:180
686
- msgid "IPs are banned"
687
- msgstr "Απαγορευμένες IPs"
688
-
689
- #: modules/apache.php:183
690
- msgid "IPs are allowed"
691
- msgstr "Επιτρεπόμενες IPs"
692
-
693
- #: models/redirect.php:386
694
- msgid "Redirect to URL"
695
- msgstr "Προώθηση σε URL"
696
-
697
- #: models/redirect.php:387
698
- msgid "Redirect to random post"
699
- msgstr "Προώθηση σε τυχαίο άρθρο"
700
-
701
- #: models/redirect.php:388
702
- msgid "Pass-through"
703
- msgstr "Pass-through"
704
-
705
- #: models/redirect.php:389
706
- msgid "Error (404)"
707
- msgstr "Σφάλμα (404)"
708
-
709
- #: models/redirect.php:390
710
- msgid "Do nothing"
711
- msgstr "Τίποτα"
712
-
713
- #: models/module.php:161
714
- #: models/database.php:94
715
- msgid "WordPress"
716
- msgstr "WordPress"
717
-
718
- #: models/module.php:162
719
- msgid "404 Errors"
720
- msgstr "Σφάλμα 404"
721
-
722
- #: models/module.php:187
723
- msgid "Strip WWW"
724
- msgstr "χωρίς WWW"
725
-
726
- #: models/module.php:187
727
- msgid "Force WWW"
728
- msgstr "με WWW"
729
-
730
- #: models/module.php:192
731
- msgid "Strip index.php"
732
- msgstr "χωρίς index.php"
733
-
734
- #: models/database.php:96
735
- msgid "404"
736
- msgstr "404"
737
-
738
- #: models/database.php:101
739
- msgid "Redirections"
740
- msgstr "Redirections"
741
-
742
- #: models/database.php:102
743
- msgid "Modified Posts"
744
- msgstr "Άρθρα που έχουν αλλάξει"
745
-
746
- #: models/pager.php:404
747
- msgid "Previous"
748
- msgstr "Προηγούμενο"
749
-
750
- #: models/pager.php:405
751
- msgid "Next"
752
- msgstr "Επόμενο"
753
-
754
- #: models/pager.php:463
755
- msgid "%d per-page"
756
- msgstr "%d ανά σελίδα"
757
-
758
- #: models/pager.php:472
759
- msgid "Displaying %s&#8211;%s of %s"
760
- msgstr "Προβολή %s&#8211;%s από %s"
761
-
762
- #: models/group.php:194
763
- msgid "Yes"
764
- msgstr "Ναι"
765
-
766
- #: models/group.php:195
767
- msgid "No"
768
- msgstr "Όχι"
769
-
770
- #: ajax.php:370
771
- msgid "Sorry, but your redirection was not created"
772
- msgstr "Δεν ήταν εφικτή η δημιουργία προώθησης"
773
-
774
- #: redirection.php:94
775
- msgid "Settings"
776
- msgstr "Ρυθμίσεις"
777
-
778
- #: redirection.php:112
779
- msgid "Please wait..."
780
- msgstr "Αναμονή..."
781
-
782
- #. #-#-#-#-# plugin.pot (Redirection 2.2.5) #-#-#-#-#
783
- #. Plugin Name of the plugin/theme
784
- #: redirection.php:121
785
- msgid "Redirection"
786
- msgstr "Redirection"
787
-
788
- #: redirection.php:159
789
- msgid "Your module was successfully created"
790
- msgstr "Επιτυχής δημιουργία module"
791
-
792
- #: redirection.php:163
793
- msgid "Your module was not created - did you provide a name?"
794
- msgstr "Σφάλμα δημιουργίας module - συμπληρώστε το όνομα"
795
-
796
- #: redirection.php:228
797
- msgid "Your options were updated"
798
- msgstr "Οι ρυθμίσεις ενημερώθηκαν"
799
-
800
- #: redirection.php:236
801
- msgid "Redirection data has been deleted and the plugin disabled"
802
- msgstr "Ολοκληρώθηκε η διαγραφή δεδομένων και η απενεργοποίηση του Redirection plugin"
803
-
804
- #: redirection.php:246
805
- msgid "%d redirection was successfully imported"
806
- msgid_plural "%d redirections were successfully imported"
807
-
808
- #: redirection.php:248
809
- msgid "No items were imported"
810
- msgstr "Η εισαγωγή δεν πέτυχε"
811
-
812
- #: redirection.php:266
813
- msgid "Your logs have been deleted"
814
- msgstr "Το αρχείο διαγράφηκε"
815
-
816
- #: redirection.php:289
817
- msgid "Your group was added successfully"
818
- msgstr "Η ομάδα προστέθηκε επιτυχώς"
819
-
820
- #: redirection.php:293
821
- msgid "Please specify a group name"
822
- msgstr "Όνομα ομάδας"
823
-
824
- #: redirection.php:330
825
- msgid "Redirection is available in"
826
- msgstr "Redirection σε"
827
-
828
- #: matches/url.php:25
829
- msgid "URL only"
830
- msgstr "Μόνο URL"
831
-
832
- #: matches/url.php:40
833
- #: matches/user_agent.php:55
834
- #: matches/referrer.php:47
835
- msgid "HTTP Code"
836
- msgstr "Κώδικας HTTP"
837
-
838
- #: matches/login.php:25
839
- msgid "URL and login status"
840
- msgstr "URL και κατάσταση σύνδεσης"
841
-
842
- #: matches/login.php:33
843
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
844
- msgstr "Η διεύθυνση URL που θα γίνει η προώθηση θα επιλεγεί από τις παρακάτω διευθύνσεις ανάλογα αν ο χρήστης είναι συνδεδεμένος ή όχι. Κενή διεύθυνση σημαίνει ότι ο χρήστης δεν θα προωθείται σε νέα διεύθυνση."
845
-
846
- #: matches/login.php:39
847
- #: matches/login.php:41
848
- msgid "Logged In"
849
- msgstr "Σύνδεση"
850
-
851
- #: matches/login.php:51
852
- #: matches/login.php:53
853
- msgid "Logged Out"
854
- msgstr "Αποσυνδέθηκε"
855
-
856
- #: matches/user_agent.php:27
857
- msgid "URL and user agent"
858
- msgstr "URL και user agent"
859
-
860
- #: matches/user_agent.php:32
861
- msgid "FeedBurner"
862
- msgstr "FeedBurner"
863
-
864
- #: matches/user_agent.php:33
865
- msgid "Internet Explorer"
866
- msgstr "Internet Explorer"
867
-
868
- #: matches/user_agent.php:34
869
- msgid "FireFox"
870
- msgstr "FireFox"
871
-
872
- #: matches/user_agent.php:35
873
- msgid "Opera"
874
- msgstr "Opera"
875
-
876
- #: matches/user_agent.php:36
877
- msgid "Safari"
878
- msgstr "Safari"
879
-
880
- #: matches/user_agent.php:37
881
- msgid "iPhone"
882
- msgstr "iPhone"
883
-
884
- #: matches/user_agent.php:38
885
- msgid "Nintendo Wii"
886
- msgstr "Nintendo Wii"
887
-
888
- #: matches/user_agent.php:66
889
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
890
- msgstr "Ο επισκέπτης θα προωθηθεί στην κατάλληλη διεύθυνση URL αν το user agent ταιριάζει. Προσδιορίστε διεύθυνση που να <em>ταιριάζει</em> ως τη διεύθυνση που βλέπουν οι επισκέπτες αν ταιριάζει το user agent ή όχι. Κενή διεύθυνση URL σημαίνει ότι ο επισκέπτης δεν προωθείται. <strong>Η ταυτοποίηση πραγματοποιείται με regular expressions</strong>.\n"
891
-
892
- #: matches/user_agent.php:73
893
- #: matches/user_agent.php:75
894
- #: matches/referrer.php:63
895
- #: matches/referrer.php:65
896
- msgid "Matched"
897
- msgstr "Ταιριάζει"
898
-
899
- #: matches/user_agent.php:83
900
- #: matches/user_agent.php:85
901
- #: matches/referrer.php:73
902
- #: matches/referrer.php:75
903
- msgid "Not matched"
904
- msgstr "Δεν ταιριάζει"
905
-
906
- #: matches/referrer.php:28
907
- msgid "URL and referrer"
908
- msgstr "URL και πηγή"
909
-
910
- #: matches/referrer.php:57
911
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
912
- msgstr "Ο επισκέπτης θα προωθηθεί στην κατάλληλη διεύθυνση URL αν η πηγή (referrer) ταιριάζει. Προσδιορίστε διεύθυνση που να <em>ταιριάζει</em> ως τη διεύθυνση που βλέπουν οι επισκέπτες αν ταιριάζει η πηγή (referrer) ή όχι. Κενή διεύθυνση URL σημαίνει ότι ο επισκέπτης δεν προωθείται."
913
-
914
- #. Plugin URI of the plugin/theme
915
- msgid "http://urbangiraffe.com/plugins/redirection/"
916
- msgstr "http://urbangiraffe.com/plugins/redirection/"
917
-
918
- #. Description of the plugin/theme
919
- msgid "Manage all your 301 redirects and monitor 404 errors"
920
- msgstr "Διαχείριση προωθήσεων 301 και σφαλμάτων 404"
921
-
922
- #. Author of the plugin/theme
923
- msgid "John Godley"
924
- msgstr "John Godley"
925
-
926
- #. Author URI of the plugin/theme
927
- msgid "http://urbangiraffe.com"
928
- msgstr "http://urbangiraffe.com"
929
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-en_CA.mo CHANGED
Binary file
locale/redirection-en_CA.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-10-24 16:53:58+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,71 +13,71 @@ msgstr ""
13
 
14
  #. Plugin URI of the plugin/theme
15
  msgid "https://redirection.me/"
16
- msgstr ""
17
 
18
  #: redirection-strings.php:230
19
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
20
- msgstr ""
21
 
22
  #: redirection-strings.php:229
23
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
24
- msgstr ""
25
 
26
  #: redirection-strings.php:227
27
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
28
- msgstr ""
29
 
30
  #: redirection-strings.php:159
31
  msgid "Never cache"
32
- msgstr ""
33
 
34
  #: redirection-strings.php:158
35
  msgid "An hour"
36
- msgstr ""
37
 
38
  #: redirection-strings.php:135
39
  msgid "Redirect Cache"
40
- msgstr ""
41
 
42
  #: redirection-strings.php:134
43
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
44
- msgstr ""
45
 
46
  #: redirection-strings.php:72
47
  msgid "Are you sure you want to import from %s?"
48
- msgstr ""
49
 
50
  #: redirection-strings.php:71
51
  msgid "Plugin Importers"
52
- msgstr ""
53
 
54
  #: redirection-strings.php:70
55
  msgid "The following redirect plugins were detected on your site and can be imported from."
56
- msgstr ""
57
 
58
  #: redirection-strings.php:53
59
  msgid "total = "
60
- msgstr ""
61
 
62
  #: redirection-strings.php:52
63
  msgid "Import from %s"
64
- msgstr ""
65
 
66
  #: redirection-admin.php:252
67
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
68
- msgstr ""
69
 
70
  #: redirection-admin.php:251
71
  msgid "Redirection not installed properly"
72
- msgstr ""
73
 
74
  #: redirection-admin.php:233
75
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
76
- msgstr ""
77
 
78
  #: models/importer.php:149
79
  msgid "Default WordPress \"old slugs\""
80
- msgstr ""
81
 
82
  #: redirection-strings.php:151
83
  msgid "Create associated redirect (added to end of URL)"
@@ -569,7 +569,7 @@ msgstr "It didn't work when I tried again"
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
571
 
572
- #: redirection-admin.php:175
573
  msgid "Log entries (%d max)"
574
  msgstr "Log entries (%d max)"
575
 
@@ -852,7 +852,7 @@ msgstr "Download"
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
- #: redirection-admin.php:155
856
  msgid "Settings"
857
  msgstr "Settings"
858
 
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-12-11 23:42:32+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
13
 
14
  #. Plugin URI of the plugin/theme
15
  msgid "https://redirection.me/"
16
+ msgstr "https://redirection.me/"
17
 
18
  #: redirection-strings.php:230
19
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
20
+ msgstr "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
21
 
22
  #: redirection-strings.php:229
23
  msgid "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
24
+ msgstr "If you want to report a bug please read the {{report}}Reporting Bugs{{/report}} guide."
25
 
26
  #: redirection-strings.php:227
27
  msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
28
+ msgstr "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}} - include as much information as you can!"
29
 
30
  #: redirection-strings.php:159
31
  msgid "Never cache"
32
+ msgstr "Never cache"
33
 
34
  #: redirection-strings.php:158
35
  msgid "An hour"
36
+ msgstr "An hour"
37
 
38
  #: redirection-strings.php:135
39
  msgid "Redirect Cache"
40
+ msgstr "Redirect Cache"
41
 
42
  #: redirection-strings.php:134
43
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
44
+ msgstr "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
45
 
46
  #: redirection-strings.php:72
47
  msgid "Are you sure you want to import from %s?"
48
+ msgstr "Are you sure you want to import from %s?"
49
 
50
  #: redirection-strings.php:71
51
  msgid "Plugin Importers"
52
+ msgstr "Plugin Importers"
53
 
54
  #: redirection-strings.php:70
55
  msgid "The following redirect plugins were detected on your site and can be imported from."
56
+ msgstr "The following redirect plugins were detected on your site and can be imported from."
57
 
58
  #: redirection-strings.php:53
59
  msgid "total = "
60
+ msgstr "total = "
61
 
62
  #: redirection-strings.php:52
63
  msgid "Import from %s"
64
+ msgstr "Import from %s"
65
 
66
  #: redirection-admin.php:252
67
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
68
+ msgstr "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
69
 
70
  #: redirection-admin.php:251
71
  msgid "Redirection not installed properly"
72
+ msgstr "Redirection not installed properly"
73
 
74
  #: redirection-admin.php:233
75
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
76
+ msgstr "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
77
 
78
  #: models/importer.php:149
79
  msgid "Default WordPress \"old slugs\""
80
+ msgstr "Default WordPress \"old slugs\""
81
 
82
  #: redirection-strings.php:151
83
  msgid "Create associated redirect (added to end of URL)"
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
571
 
572
+ #: redirection-admin.php:174
573
  msgid "Log entries (%d max)"
574
  msgstr "Log entries (%d max)"
575
 
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
+ #: redirection-admin.php:154
856
  msgid "Settings"
857
  msgstr "Settings"
858
 
locale/redirection-en_GB.mo CHANGED
Binary file
locale/redirection-en_GB.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-11-16 20:11:52+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -569,7 +569,7 @@ msgstr "It didn't work when I tried again"
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
571
 
572
- #: redirection-admin.php:175
573
  msgid "Log entries (%d max)"
574
  msgstr "Log entries (%d max)"
575
 
@@ -852,7 +852,7 @@ msgstr "Download"
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
- #: redirection-admin.php:155
856
  msgid "Settings"
857
  msgstr "Settings"
858
 
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-11-20 12:09:25+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
571
 
572
+ #: redirection-admin.php:174
573
  msgid "Log entries (%d max)"
574
  msgstr "Log entries (%d max)"
575
 
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
+ #: redirection-admin.php:154
856
  msgid "Settings"
857
  msgstr "Settings"
858
 
locale/redirection-es_ES.po CHANGED
@@ -569,7 +569,7 @@ msgstr "No funcionó al intentarlo de nuevo"
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr "Revisa si tu problema está descrito en la lista de habituales {{link}}problemas con Redirection{{/link}}. Por favor, añade más detalles si encuentras el mismo problema."
571
 
572
- #: redirection-admin.php:175
573
  msgid "Log entries (%d max)"
574
  msgstr "Entradas del registro (máximo %d)"
575
 
@@ -852,7 +852,7 @@ msgstr "Descargar"
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
- #: redirection-admin.php:155
856
  msgid "Settings"
857
  msgstr "Ajustes"
858
 
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr "Revisa si tu problema está descrito en la lista de habituales {{link}}problemas con Redirection{{/link}}. Por favor, añade más detalles si encuentras el mismo problema."
571
 
572
+ #: redirection-admin.php:174
573
  msgid "Log entries (%d max)"
574
  msgstr "Entradas del registro (máximo %d)"
575
 
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
+ #: redirection-admin.php:154
856
  msgid "Settings"
857
  msgstr "Ajustes"
858
 
locale/redirection-fa_IR.mo DELETED
Binary file
locale/redirection-fa_IR.po DELETED
@@ -1,1073 +0,0 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: Persian Redirection Plugin\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/redirection\n"
10
- "POT-Creation-Date: 2012-05-07 13:59:00+00:00\n"
11
- "PO-Revision-Date: 2014-08-04 16:40+0330\n"
12
- "Last-Translator: Danial Hatami <great.emperor94@gmail.com>\n"
13
- "Language-Team: Danial Hatami <hi@chamrosh.ir>\n"
14
- "Language: fa_IR\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=UTF-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
- "X-Poedit-SourceCharset: UTF-8\n"
19
- "X-Poedit-KeywordsList: __;_e;__ ;_e\n"
20
- "X-Poedit-Basepath: .\n"
21
- "X-Generator: Poedit 1.6.5\n"
22
- "Plural-Forms: nplurals=1; plural=0;\n"
23
-
24
- #: ajax.php:370
25
- msgid "Sorry, but your redirection was not created"
26
- msgstr "متاسفیم ٬ اما تغییر مسیر شما ایجاد نشده است ."
27
-
28
- #: fileio/csv.php:21
29
- msgid "module_%d.csv"
30
- msgstr "module_%d.csv"
31
-
32
- #: fileio/xml.php:32
33
- msgid "module_%d.xml"
34
- msgstr "module_%d.xml"
35
-
36
- #: fileio/xml.php:105
37
- msgid "%s imported on %s at %s"
38
- msgstr "%s درون ریزی شده در %s در %s"
39
-
40
- #: fileio/xml.php:168
41
- msgid "XML importing is only available with PHP5 - you have PHP4."
42
- msgstr ""
43
- "درون ریزی XML تنها در نسخه PHP5 امکان پذیر است و شما از نسخه PHP4 استفاده "
44
- "می‌کنید."
45
-
46
- #: matches/login.php:25
47
- msgid "URL and login status"
48
- msgstr "نشانی و وضعیت ورودی"
49
-
50
- #: matches/login.php:33
51
- msgid ""
52
- "The target URL will be chosen from one of the following URLs, depending if "
53
- "the user is logged in or out. Leaving a URL blank means that the user is "
54
- "not redirected."
55
- msgstr ""
56
- "نشانی هدف از یکی از نشانی های زیر انتخاب می‌شود و بستگی به این دارد که کاربر "
57
- "وارد شده باشد یا خیر. خالی گذاشتن نشانی به معنای عدم تغییر مسیر کاربر است !"
58
-
59
- #: matches/login.php:39 matches/login.php:41
60
- msgid "Logged In"
61
- msgstr "وارد شده"
62
-
63
- #: matches/login.php:51 matches/login.php:53
64
- msgid "Logged Out"
65
- msgstr "خارج شده"
66
-
67
- #: matches/referrer.php:28
68
- msgid "URL and referrer"
69
- msgstr "نشانی و ارجاع دهنده"
70
-
71
- #: matches/referrer.php:40 view/admin/log.php:69
72
- msgid "Referrer"
73
- msgstr "مرجع"
74
-
75
- #: matches/referrer.php:43 view/admin/item_edit.php:18
76
- msgid "Regex"
77
- msgstr "عبارت منظم"
78
-
79
- #: matches/referrer.php:47 matches/url.php:40 matches/user_agent.php:57
80
- msgid "HTTP Code"
81
- msgstr "کد HTTP"
82
-
83
- #: matches/referrer.php:57
84
- msgid ""
85
- "The visitor will be redirected from the source URL if the referrer matches. "
86
- "You can specify a <em>matched</em> target URL as the address to send "
87
- "visitors if they do match, and <em>not matched</em> if they don't match. "
88
- "Leaving a URL blank means that the visitor is not redirected."
89
- msgstr ""
90
- "بازدید کننده در صورت تطابق نشانی منبع تغییر مسیر داده می‌شود شما می‌توانید یک "
91
- "نشانی هدف برای تطابق یا عدم تطابق برای بازدیدکننده تعیین کنید و در صورت خالی "
92
- "بودن نشانی بازدیدکننده تغییر مسیر نمی‌دهد."
93
-
94
- #: matches/referrer.php:63 matches/referrer.php:65 matches/user_agent.php:75
95
- #: matches/user_agent.php:77
96
- msgid "Matched"
97
- msgstr "همسان"
98
-
99
- #: matches/referrer.php:73 matches/referrer.php:75 matches/user_agent.php:85
100
- #: matches/user_agent.php:87
101
- msgid "Not matched"
102
- msgstr "عدم تطابق"
103
-
104
- #: matches/url.php:25
105
- msgid "URL only"
106
- msgstr "فقط نشانی"
107
-
108
- #: matches/url.php:32 view/admin/add.php:31
109
- msgid "Target URL"
110
- msgstr "URL هدف"
111
-
112
- #: matches/user_agent.php:27
113
- msgid "URL and user agent"
114
- msgstr "نشانی و عامل کاربری"
115
-
116
- #: matches/user_agent.php:32
117
- msgid "FeedBurner"
118
- msgstr "فید برنر"
119
-
120
- #: matches/user_agent.php:33
121
- msgid "Internet Explorer"
122
- msgstr "اینترنت اکسپلورر"
123
-
124
- #: matches/user_agent.php:34
125
- msgid "FireFox"
126
- msgstr "فایرفاکس"
127
-
128
- #: matches/user_agent.php:35
129
- msgid "Opera"
130
- msgstr "اپرا"
131
-
132
- #: matches/user_agent.php:36
133
- msgid "Safari"
134
- msgstr "سفری"
135
-
136
- #: matches/user_agent.php:37
137
- msgid "iPhone"
138
- msgstr "آی‌فون"
139
-
140
- #: matches/user_agent.php:38
141
- msgid "iPad"
142
- msgstr "آی‌پاد"
143
-
144
- #: matches/user_agent.php:39
145
- msgid "Android"
146
- msgstr "آندروید"
147
-
148
- #: matches/user_agent.php:40
149
- msgid "Nintendo Wii"
150
- msgstr "نینتندو"
151
-
152
- #: matches/user_agent.php:45 view/admin/log_item_details.php:20
153
- msgid "User Agent"
154
- msgstr "User Agent"
155
-
156
- #: matches/user_agent.php:68
157
- msgid ""
158
- "The visitor will be redirected from the source URL if the user agent "
159
- "matches. You can specify a <em>matched</em> target URL as the address to "
160
- "send visitors if they do match, and <em>not matched</em> if they don't "
161
- "match. Leaving a URL blank means that the visitor is not redirected. "
162
- "<strong>All matches are performed as regular expressions</strong>.\n"
163
- msgstr ""
164
- "بازدید کننده در صورت تطابق عامل کاربری تغییر مسیر داده می‌شود شما می‌توانید یک "
165
- "نشانی هدف برای تطابق یا عدم تطابق برای بازدیدکننده تعیین کنید و در صورت خالی "
166
- "بودن نشانی بازدیدکننده تغییر مسیر نمی‌دهد. تمام مطابق‌ها به عنوان عبارت های "
167
- "منظم انجام می‌شوند .\n"
168
-
169
- #: models/database.php:94 models/module.php:161
170
- msgid "WordPress"
171
- msgstr "وردپرس"
172
-
173
- #: models/database.php:95 models/module.php:160 view/admin/module_item.php:27
174
- msgid "Apache"
175
- msgstr "آپاچی"
176
-
177
- #: models/database.php:96
178
- msgid "404"
179
- msgstr "۴۰۴"
180
-
181
- #: models/database.php:101
182
- msgid "Redirections"
183
- msgstr "تغییر مسیرها"
184
-
185
- #: models/database.php:102
186
- msgid "Modified Posts"
187
- msgstr "نوشته‌های اصلاح‌یافته"
188
-
189
- #: models/group.php:194
190
- msgid "Yes"
191
- msgstr "بله"
192
-
193
- #: models/group.php:195
194
- msgid "No"
195
- msgstr "خیر"
196
-
197
- #: models/module.php:162
198
- msgid "404 Errors"
199
- msgstr "خطاهای ۴۰۴"
200
-
201
- #: models/module.php:187
202
- msgid "Strip WWW"
203
- msgstr "حذف www"
204
-
205
- #: models/module.php:187
206
- msgid "Force WWW"
207
- msgstr "اعمال www"
208
-
209
- #: models/module.php:192
210
- msgid "Strip index.php"
211
- msgstr "برهنه‌سازی index.php"
212
-
213
- #: models/pager.php:389
214
- msgid "Previous"
215
- msgstr "قبلی"
216
-
217
- #: models/pager.php:390
218
- msgid "Next"
219
- msgstr "بعدی"
220
-
221
- #: models/pager.php:448
222
- msgid "%d per-page"
223
- msgstr "%d در هر برگه"
224
-
225
- #: models/pager.php:457
226
- msgid "Displaying %s&#8211;%s of %s"
227
- msgstr "نمایش %s&#8211;%s از %s"
228
-
229
- #: models/redirect.php:386
230
- msgid "Redirect to URL"
231
- msgstr "تغییر مسیر نشانی‌ها"
232
-
233
- #: models/redirect.php:387
234
- msgid "Redirect to random post"
235
- msgstr "تغییر مسیر به نوشته‌های تصادفی"
236
-
237
- #: models/redirect.php:388
238
- msgid "Pass-through"
239
- msgstr "Pass-through"
240
-
241
- #: models/redirect.php:389
242
- msgid "Error (404)"
243
- msgstr "خطای ۴۰۴"
244
-
245
- #: models/redirect.php:390
246
- msgid "Do nothing"
247
- msgstr "هیچ‌کاری انجام نده"
248
-
249
- #: modules/404.php:37
250
- msgid "Log 404s"
251
- msgstr "گزارش‌های ۴۰۴"
252
-
253
- #: modules/404.php:46 modules/wordpress.php:121
254
- msgid ""
255
- "<strong>Disabled: You must enable <a href=\"options-permalink.php"
256
- "\">permalinks</a> before using this</strong>"
257
- msgstr ""
258
- "<strong>غیر فعال : شما باید نخست <a href=\"options-permalink.php\">پیوند‌های "
259
- "یکتا</a>را فعال کنید</strong>"
260
-
261
- #: modules/404.php:57
262
- msgid "<small>No options have been set</small>"
263
- msgstr "<small>تنظیمات قرارداده نشده</small>"
264
-
265
- #: modules/apache.php:77
266
- msgid "Location"
267
- msgstr "محل"
268
-
269
- #: modules/apache.php:82
270
- msgid "WordPress is installed in: <code>%s</code>"
271
- msgstr "وردپرس در شاخه <code>%s</code> نصب شده"
272
-
273
- #: modules/apache.php:87
274
- msgid "Canonical"
275
- msgstr "استاندارد"
276
-
277
- #: modules/apache.php:90 modules/apache.php:96
278
- msgid "Leave as is"
279
- msgstr "ترک کردن به عنوان"
280
-
281
- #: modules/apache.php:90
282
- msgid "Strip WWW (%s)"
283
- msgstr "حذف WWW (%s)"
284
-
285
- #: modules/apache.php:90
286
- msgid "Force WWW (www.%s)"
287
- msgstr "اعمال WWW (www.%s)"
288
-
289
- #: modules/apache.php:94
290
- msgid "Strip Index"
291
- msgstr "برهنه کردن صفحه اصلی"
292
-
293
- #: modules/apache.php:96
294
- msgid "Strip index files (html,php)"
295
- msgstr "حذف پیشوند فایل اصلی (html,php)"
296
-
297
- #: modules/apache.php:101
298
- msgid "Memory Limit"
299
- msgstr "محدودیت حافظه"
300
-
301
- #: modules/apache.php:104 modules/apache.php:109
302
- msgid "Server default"
303
- msgstr "سرور پیشفرض"
304
-
305
- #: modules/apache.php:107
306
- msgid "Error Level"
307
- msgstr "خطای دسترسی"
308
-
309
- #: modules/apache.php:109
310
- msgid "No errors"
311
- msgstr "بدون خطا"
312
-
313
- #: modules/apache.php:109
314
- msgid "Show errors"
315
- msgstr "نمایش خطاها"
316
-
317
- #: modules/apache.php:114
318
- msgid "Ban IPs"
319
- msgstr "آی‌پی‌های مسدود‌شده"
320
-
321
- #: modules/apache.php:120
322
- msgid "Allow IPs"
323
- msgstr "آی‌پی‌های مجاز"
324
-
325
- #: modules/apache.php:126
326
- msgid "Raw .htaccess"
327
- msgstr ".htaccess خام "
328
-
329
- #: modules/apache.php:132
330
- msgid "Site URL"
331
- msgstr "نشانی سایت"
332
-
333
- #: modules/apache.php:135
334
- msgid "Advanced: For management of external sites"
335
- msgstr "پیشرفته : برای مدیریت سایت‌های اکسترنال/خارجی"
336
-
337
- #: modules/apache.php:150
338
- msgid "<strong>Location is invalid - check that path exists</strong>"
339
- msgstr ""
340
- "<strong>مکان نامعتبر است - از وجود داشتن مسیر اطمینان حاصل کنید</strong>"
341
-
342
- #: modules/apache.php:156
343
- msgid ""
344
- "<strong>Could not write to configured <code>.htaccess</code> file - check "
345
- "file permissions</strong>"
346
- msgstr ""
347
- "<strong>امکان دسترسی به <code>.htaccess</code> نیست -سطح دسترسی ها را بررسی "
348
- "کنید</strong>"
349
-
350
- #: modules/apache.php:163
351
- msgid ""
352
- "<strong>Disabled: enter the location of an <code>.htaccess</code> file for "
353
- "this to be valid</strong>"
354
- msgstr ""
355
- "<strong>غیر فعال : مکان پرونده <code>.htaccess</code> را برای معتبرسازی وارد "
356
- "کنید.</strong>"
357
-
358
- #: modules/apache.php:168
359
- msgid "strip WWW"
360
- msgstr "بدون WWW"
361
-
362
- #: modules/apache.php:168
363
- msgid "force WWW"
364
- msgstr "بدون WWW"
365
-
366
- #: modules/apache.php:171
367
- msgid "strip index"
368
- msgstr "برهنه سازی صفحه اصلی"
369
-
370
- #: modules/apache.php:174
371
- msgid "memory limit at %dMB"
372
- msgstr "میزان حافظه %d مگابایت"
373
-
374
- #: modules/apache.php:177
375
- msgid "no errors"
376
- msgstr "بدون خطا"
377
-
378
- #: modules/apache.php:177
379
- msgid "show errors"
380
- msgstr "نمایش خطاها"
381
-
382
- #: modules/apache.php:180
383
- msgid "IPs are banned"
384
- msgstr "آی‌پی ها مسدود شدند"
385
-
386
- #: modules/apache.php:183
387
- msgid "IPs are allowed"
388
- msgstr "آی‌پی‌های مجاز شده"
389
-
390
- #: redirection.php:94
391
- msgid "Settings"
392
- msgstr "تنظیمات"
393
-
394
- #: redirection.php:112
395
- msgid "Please wait..."
396
- msgstr "لطفا صبور باشید .."
397
-
398
- #: redirection.php:115 view/admin/group_list.php:118
399
- #: view/admin/item_list.php:113 view/admin/log.php:113
400
- msgid "Are you sure?"
401
- msgstr "هل انت متأكد؟"
402
-
403
- #: redirection.php:116 view/admin/group_list.php:117
404
- #: view/admin/item_list.php:112 view/admin/log.php:112
405
- msgid "No items have been selected"
406
- msgstr "موردی انتخاب نشده"
407
-
408
- #. Plugin Name of the plugin/theme
409
- #: redirection.php:121
410
- msgid "Redirection"
411
- msgstr "تغییر مسیر"
412
-
413
- #: redirection.php:159
414
- msgid "Your module was successfully created"
415
- msgstr "ماژول با موفقیت ساخته شد"
416
-
417
- #: redirection.php:163
418
- msgid "Your module was not created - did you provide a name?"
419
- msgstr "ماژول ایجاد نشد ! آیا اسمی گزینش کردید ؟"
420
-
421
- #: redirection.php:228
422
- msgid "Your options were updated"
423
- msgstr "تنظیمات با موفقیت به‌روز شد"
424
-
425
- #: redirection.php:236
426
- msgid "Redirection data has been deleted and the plugin disabled"
427
- msgstr "اطلاعات پاک شد و افزونه غیر فعال !"
428
-
429
- #: redirection.php:246
430
- msgid "%d redirection was successfully imported"
431
- msgid_plural "%d redirections were successfully imported"
432
- msgstr[0] "%d تغییر مسیر با موفقیت درون‌ریزی شد"
433
-
434
- #: redirection.php:248
435
- msgid "No items were imported"
436
- msgstr "موردی درون ریزی نشد"
437
-
438
- #: redirection.php:266
439
- msgid "Your logs have been deleted"
440
- msgstr "گزارش‌های شما پاک شدند"
441
-
442
- #: redirection.php:289
443
- msgid "Your group was added successfully"
444
- msgstr "گروه افزوده شد"
445
-
446
- #: redirection.php:293
447
- msgid "Please specify a group name"
448
- msgstr "لطفا یک نام برای گروه انتخاب کنید"
449
-
450
- #: redirection.php:330
451
- msgid "Redirection is available in"
452
- msgstr "تغییر مسیر در دسترس است در"
453
-
454
- #: view/admin/add.php:3
455
- msgid "Add new redirection"
456
- msgstr "افزودن تغییر مسیر تازه"
457
-
458
- #: view/admin/add.php:6
459
- msgid "Your redirection has been added."
460
- msgstr "تغییر مسیر شما افزوده شد."
461
-
462
- #: view/admin/add.php:12 view/admin/item_edit.php:15 view/admin/log.php:68
463
- #: view/admin/log_item_details.php:4
464
- msgid "Source URL"
465
- msgstr "نشانی اصلی"
466
-
467
- #: view/admin/add.php:16
468
- msgid "Match"
469
- msgstr "تطابق"
470
-
471
- #: view/admin/add.php:22
472
- msgid "Action"
473
- msgstr "فعالیت"
474
-
475
- #: view/admin/add.php:27
476
- msgid "Regular expression"
477
- msgstr "عبارت منظم"
478
-
479
- #: view/admin/add.php:36 view/admin/item_list.php:24 view/admin/log.php:43
480
- msgid "Group"
481
- msgstr "گروه"
482
-
483
- #: view/admin/add.php:43
484
- msgid "Add Redirection"
485
- msgstr "افزودن"
486
-
487
- #: view/admin/group_edit.php:6 view/admin/group_list.php:37
488
- #: view/admin/group_list.php:100 view/admin/module_edit.php:18
489
- #: view/admin/module_list.php:42
490
- msgid "Name"
491
- msgstr "نام"
492
-
493
- #: view/admin/group_edit.php:10
494
- msgid "Tracked"
495
- msgstr "زنجیردار"
496
-
497
- #: view/admin/group_edit.php:11
498
- msgid "Whether to track 'hits' to items"
499
- msgstr "ایا بازدیدها به موارد زنجیر شوند"
500
-
501
- #: view/admin/group_edit.php:14
502
- msgid "Enabled"
503
- msgstr "فعال‌سازی"
504
-
505
- #: view/admin/group_edit.php:15
506
- msgid "Disabling a group will disable all items contained within it"
507
- msgstr "غیرفعال‌سازی گروه سبب غیرفعال سازی تمامی موارد شامل شده در گروه می‌شود"
508
-
509
- #: view/admin/group_edit.php:20 view/admin/item_edit.php:27
510
- #: view/admin/module_edit.php:27
511
- msgid "Save"
512
- msgstr "دخیره سازی"
513
-
514
- #: view/admin/group_edit.php:21 view/admin/item_edit.php:28
515
- #: view/admin/module_edit.php:28
516
- msgid "Cancel"
517
- msgstr "الغي"
518
-
519
- #: view/admin/group_item.php:3
520
- msgid "edit group"
521
- msgstr "ویرایش گروه"
522
-
523
- #: view/admin/group_item.php:23 view/admin/item.php:27
524
- msgid "disabled"
525
- msgstr "غیرفعال شده"
526
-
527
- #: view/admin/group_list.php:6
528
- msgid "Groups for module"
529
- msgstr "گروه های برای ماژول"
530
-
531
- #: view/admin/group_list.php:16 view/admin/log.php:38
532
- msgid "Module"
533
- msgstr "ماژول"
534
-
535
- #: view/admin/group_list.php:21 view/admin/item_list.php:29
536
- #: view/admin/log.php:16 view/admin/log.php:23
537
- msgid "Search"
538
- msgstr "جستجو"
539
-
540
- #: view/admin/group_list.php:26
541
- msgid "go"
542
- msgstr "برو"
543
-
544
- #: view/admin/group_list.php:36 view/admin/item_list.php:42
545
- #: view/admin/module_list.php:17
546
- msgid "Hits"
547
- msgstr "بازدیدها"
548
-
549
- #: view/admin/group_list.php:59 view/admin/item_list.php:67
550
- msgid "Select All"
551
- msgstr "انتخاب همه"
552
-
553
- #: view/admin/group_list.php:60 view/admin/item_list.php:68
554
- msgid "Toggle"
555
- msgstr "تغییر وضعیت"
556
-
557
- #: view/admin/group_list.php:61 view/admin/item_list.php:69
558
- msgid "Reset Hits"
559
- msgstr "بازنشانی بازدیدها"
560
-
561
- #: view/admin/group_list.php:62 view/admin/item_list.php:70
562
- #: view/admin/log.php:30 view/admin/options.php:120
563
- msgid "Delete"
564
- msgstr "پاک کردن"
565
-
566
- #: view/admin/group_list.php:64 view/admin/item_list.php:72
567
- msgid "Move To"
568
- msgstr "انتقال به"
569
-
570
- #: view/admin/group_list.php:69 view/admin/item_list.php:34
571
- #: view/admin/item_list.php:77
572
- msgid "Go"
573
- msgstr "برو"
574
-
575
- #: view/admin/group_list.php:75 view/admin/item_list.php:83
576
- msgid "re-order"
577
- msgstr "چینش دوباره"
578
-
579
- #: view/admin/group_list.php:76 view/admin/item_list.php:84
580
- msgid "save order"
581
- msgstr "ذخیره‌سازی چینش"
582
-
583
- #: view/admin/group_list.php:89
584
- msgid "You have no groups in this module."
585
- msgstr "شما گروهی در این ماژول ندارید ."
586
-
587
- #: view/admin/group_list.php:94
588
- msgid "Add Group"
589
- msgstr "افزودن گروه"
590
-
591
- #: view/admin/group_list.php:105
592
- msgid "Add"
593
- msgstr "افزودن"
594
-
595
- #: view/admin/item_edit.php:3
596
- msgid "%s by matching %s"
597
- msgstr "%s تطابق با %s"
598
-
599
- #: view/admin/item_edit.php:7
600
- msgid "Title"
601
- msgstr "عنوان"
602
-
603
- #: view/admin/item_edit.php:10
604
- msgid "optional"
605
- msgstr "اختیاری"
606
-
607
- #: view/admin/item_list.php:7
608
- msgid "Redirections for group"
609
- msgstr "تغییر مسیرها برای گروه"
610
-
611
- #: view/admin/item_list.php:41
612
- msgid "Last Access"
613
- msgstr "آخرین دسترسی"
614
-
615
- #: view/admin/item_list.php:43 view/admin/module_list.php:46
616
- msgid "Type"
617
- msgstr "نوع"
618
-
619
- #: view/admin/item_list.php:44
620
- msgid "URL"
621
- msgstr "نشانی"
622
-
623
- #: view/admin/item_list.php:44
624
- msgid "Position"
625
- msgstr "حالت"
626
-
627
- #: view/admin/item_list.php:88
628
- msgid "You have no redirections."
629
- msgstr "تغییر مسیری ندارید"
630
-
631
- #: view/admin/log.php:6
632
- msgid "Redirection Log"
633
- msgstr "گزارش‌های تغییر مسیر"
634
-
635
- #: view/admin/log.php:29
636
- msgid "Bulk Actions"
637
- msgstr "کارهای دسته جمعی"
638
-
639
- #: view/admin/log.php:33
640
- msgid "Apply"
641
- msgstr "اعمال"
642
-
643
- #: view/admin/log.php:49
644
- msgid "Filter"
645
- msgstr "صافی"
646
-
647
- #: view/admin/log.php:67
648
- msgid "Date"
649
- msgstr "تاریح"
650
-
651
- #: view/admin/log.php:70
652
- msgid "IP"
653
- msgstr "IP"
654
-
655
- #: view/admin/log.php:85
656
- msgid "There are no logs to display!"
657
- msgstr "گزارشی برای نمایش نیست"
658
-
659
- #: view/admin/log.php:94
660
- msgid "Process Current Logs"
661
- msgstr "فرآیند گزارش های رایج"
662
-
663
- #: view/admin/log.php:95
664
- msgid ""
665
- "These actions will affect all currently available logs (i.e. your search "
666
- "phrase will restrict the log items)."
667
- msgstr "این عمل‌ها بر روی تمام گزارش‌های دردسترس تاثیر می‌گذارد !"
668
-
669
- #: view/admin/log.php:100
670
- msgid "Delete Logs"
671
- msgstr "پاک کردن گزارش‌ها"
672
-
673
- #: view/admin/log_item_details.php:9
674
- msgid "Redirect to"
675
- msgstr "تغییر مسیر به"
676
-
677
- #: view/admin/log_item_details.php:15
678
- msgid "Redirected by"
679
- msgstr "تغییر مسیر داده شده به‌وسیله"
680
-
681
- #: view/admin/log_item_details.php:16
682
- msgid "for"
683
- msgstr "برای"
684
-
685
- #: view/admin/module_item.php:23
686
- msgid "View as"
687
- msgstr "مشاهده به‌عنوان"
688
-
689
- #: view/admin/module_item.php:25
690
- msgid "CSV"
691
- msgstr "CSV"
692
-
693
- #: view/admin/module_item.php:26
694
- msgid "XML"
695
- msgstr "XML"
696
-
697
- #: view/admin/module_item.php:28
698
- msgid "RSS"
699
- msgstr "RSS"
700
-
701
- #: view/admin/module_item.php:41
702
- msgid "edit"
703
- msgstr "ویرایش"
704
-
705
- #: view/admin/module_item.php:43
706
- msgid "delete"
707
- msgstr "پاک کردن"
708
-
709
- #: view/admin/module_item.php:45
710
- msgid "reset"
711
- msgstr "بازنشانی"
712
-
713
- #: view/admin/module_list.php:6 view/admin/submenu.php:16
714
- msgid "Modules"
715
- msgstr "ماژول‌ها"
716
-
717
- #: view/admin/module_list.php:14
718
- msgid "Details"
719
- msgstr "توضیحات"
720
-
721
- #: view/admin/module_list.php:15 view/admin/submenu.php:11
722
- msgid "Groups"
723
- msgstr "گروه‌ها"
724
-
725
- #: view/admin/module_list.php:16
726
- msgid "Items"
727
- msgstr "موارد"
728
-
729
- #: view/admin/module_list.php:18
730
- msgid "Operations"
731
- msgstr "عملیات‌ها"
732
-
733
- #: view/admin/module_list.php:27
734
- msgid "Note: Hits are dependant on log entries"
735
- msgstr "توجه داشته باشید: تعداد بازدید ها وابسته به اطلاعات ثبت شده می باشد"
736
-
737
- #: view/admin/module_list.php:29
738
- msgid "You have no modules defined yet"
739
- msgstr "شما هیچ ماژول تعریف شده‌اید ندارید"
740
-
741
- #: view/admin/module_list.php:34
742
- msgid "Add Module"
743
- msgstr "افزودن ماژول"
744
-
745
- #: view/admin/module_list.php:35
746
- msgid ""
747
- "A module is a controlling element that determines how redirections are "
748
- "handled. Elements in a WordPress module are handled by WordPress, elements "
749
- "in an Apache module are handled by <code>.htaccess</code>, and elements in a "
750
- "404 module affect how 404 errors are logged."
751
- msgstr ""
752
- "ماژول به عنوان یک عنصر کنترل کننده است که تعیین می‌کند تغییر مسیرها چگونه "
753
- "اعمال شوند. عناصر در ماژول وردپرس به‌وسیله وردپرس و در آپاچی به وسیله ."
754
- "htaccess و در ماژول ۴۰۴ تحت تاثیر گزارش های خطای ۴۰۴ می‌باشند."
755
-
756
- #: view/admin/module_list.php:55
757
- msgid "Create"
758
- msgstr "ایجاد"
759
-
760
- #: view/admin/options.php:6 view/admin/submenu.php:26
761
- msgid "Options"
762
- msgstr "نشانی"
763
-
764
- #: view/admin/options.php:15
765
- msgid "Auto-generate URL"
766
- msgstr "ایجاد خودکار نشانی"
767
-
768
- #: view/admin/options.php:19
769
- msgid ""
770
- "This will be used to auto-generate a URL if no URL is given. You can use "
771
- "the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal "
772
- "or hex)"
773
- msgstr ""
774
- "این گزینه برای ایجاد نشانی خودکار استفاده می‌شود البته اگر نشانی داده نشود ! "
775
- "شما می‌توانید برای شخصی سازی بیشتر از تگ‌های $dec$ یا $hex$ استفاده کنید تا "
776
- "یک ID یکتا داشته باشید"
777
-
778
- #: view/admin/options.php:24
779
- msgid "IP Lookup Service"
780
- msgstr "سرویس جست‌وجوی IP"
781
-
782
- #: view/admin/options.php:30
783
- msgid "Plugin Support"
784
- msgstr "پشتیبانی افزونه"
785
-
786
- #: view/admin/options.php:33
787
- msgid "I'm a nice person and I have helped support the author of this plugin"
788
- msgstr "من خیلی باحالم پس نویسنده افزونه را در پشتیبانی این افزونه کمک می‌کنم !"
789
-
790
- #: view/admin/options.php:37
791
- msgid "Logging"
792
- msgstr "ورود"
793
-
794
- #: view/admin/options.php:40
795
- msgid "log redirected requests"
796
- msgstr "گزارش درخواست‌های تغییر مسیر"
797
-
798
- #: view/admin/options.php:42
799
- msgid "log 404 Not Found requests"
800
- msgstr "گزارش درخواست‌های ۴۰۴ یافت نشد"
801
-
802
- #: view/admin/options.php:43
803
- msgid ""
804
- "Uncheck one or both of these to turn off logging and reduce database load if "
805
- "your redirected URLs are hit very frequently, and/or your site is very busy "
806
- "and pages are often not found."
807
- msgstr ""
808
- "لغو انتخاب یک یا دو مورد از گزارش گیری‌ها برای کاهش مصرف دیتابیس در صورتی که "
809
- "سایت شما بسیار شلوغ است و برگه‌ها اغلب یافت نمی‌شوند !"
810
-
811
- #: view/admin/options.php:47
812
- msgid "Expire Logs"
813
- msgstr "گزارش‌های منقضی شده"
814
-
815
- #: view/admin/options.php:50
816
- msgid "days (enter 0 for no expiry)"
817
- msgstr "روزها (برای جلوگیری از انقضا عدد 0 را وارد کنید)"
818
-
819
- #: view/admin/options.php:54
820
- msgid "RSS Token"
821
- msgstr "نشانی آراس‌اس"
822
-
823
- #: view/admin/options.php:57
824
- msgid ""
825
- "A unique token allowing feed readers access to Redirection RSS (leave blank "
826
- "to auto-generate)"
827
- msgstr ""
828
- "یک نشانی یکتا که به خوانندگان امکان دسترسی به تغییر مسیر آر‌اس‌اس را می‌دهد "
829
- "( برای ایجاد خودکار نشانی این زمینه را خالی رها کنید )"
830
-
831
- #: view/admin/options.php:62
832
- msgid "URL Monitoring"
833
- msgstr "نظارت بر نشانی"
834
-
835
- #: view/admin/options.php:63
836
- msgid ""
837
- "You can have Redirection detect changes in URLs and have an automatic "
838
- "redirection created in a specific group."
839
- msgstr ""
840
- "شما می توانید داشته باشید : تشخیص تغییر مسیر تشخیص در آدرس ها و تغییر مسیر "
841
- "خودکار در یک گروه خاص"
842
-
843
- #: view/admin/options.php:67
844
- msgid "Post &amp; Page URLs"
845
- msgstr "نوشته &amp; نشانی‌های برگه"
846
-
847
- #: view/admin/options.php:70 view/admin/options.php:82
848
- msgid "Don't monitor"
849
- msgstr "جلوگیری از نظارت"
850
-
851
- #: view/admin/options.php:74
852
- msgid "Monitor new posts"
853
- msgstr "نظارت در نوشته‌های تازه"
854
-
855
- #: view/admin/options.php:79
856
- msgid "Category URLs"
857
- msgstr "نشانی‌های دسته‌بندی"
858
-
859
- #: view/admin/options.php:89
860
- msgid "Update"
861
- msgstr "حدث"
862
-
863
- #: view/admin/options.php:95
864
- msgid "Import"
865
- msgstr "درون ریزی"
866
-
867
- #: view/admin/options.php:97
868
- msgid ""
869
- "Here you can import redirections from an existing .htaccess file, a CSV "
870
- "file, or a Redirection XML."
871
- msgstr ""
872
- "در این قسمت شما می‌توانید تغییر مسیرها را از یک پرونده .htaccess ٬ پرونده CSV "
873
- "یا XML درون ریزی کنید."
874
-
875
- #: view/admin/options.php:104
876
- msgid "Import into"
877
- msgstr "درون‌ریزی به"
878
-
879
- #: view/admin/options.php:107
880
- msgid "Upload"
881
- msgstr "ارسال"
882
-
883
- #: view/admin/options.php:110
884
- msgid "Note that the group is ignored when uploading an XML file."
885
- msgstr "توجه کنید که گروه‌ها در درون‌ریزی XML در نظر گرفته نمی‌شوند !"
886
-
887
- #: view/admin/options.php:114
888
- msgid "Delete Redirection"
889
- msgstr "پاک کردن تغییر مسیرها"
890
-
891
- #: view/admin/options.php:115
892
- msgid ""
893
- "Selecting this option will delete all redirections, all logs, and any "
894
- "options associated with the Redirection plugin. Make sure this is what you "
895
- "want to do."
896
- msgstr ""
897
- "انتخاب این گزینه باعث پاک شدن تمامی تغییر مسیرها٬ گزارش‌ها و تمامی تغییرات "
898
- "اعمال شده در افزونه می‌شود ! پس مراقب باشید !"
899
-
900
- #: view/admin/submenu.php:6
901
- msgid "Redirects"
902
- msgstr "تغییر مسیرها"
903
-
904
- #: view/admin/submenu.php:21
905
- msgid "Log"
906
- msgstr "گزارش‌ها"
907
-
908
- #: view/admin/submenu.php:31
909
- msgid "Support"
910
- msgstr "پشتیبانی"
911
-
912
- #: view/admin/support.php:5
913
- msgid "Redirection Support"
914
- msgstr "پشتیبانی تغییر مسیر"
915
-
916
- #: view/admin/support.php:9
917
- msgid ""
918
- "Redirection is free to use - life is wonderful and lovely! However, it has "
919
- "required a great deal of time and effort to develop and if it has been "
920
- "useful you can help support this development by <strong>making a small "
921
- "donation</strong>."
922
- msgstr ""
923
- "افزونه تغییر مسیر یک افزونه رایگان است - زندگی فوق‌العاده و عاشقانه است ! اما "
924
- "زمان زیادی برای توسعه و ساخت افزونه صرف شده است . شما می‌توانید با کمک‌های "
925
- "نقدی کوچک خود در توسعه افزونه سهیم باشید."
926
-
927
- #: view/admin/support.php:10
928
- msgid ""
929
- "This will act as an incentive for me to carry on developing, providing "
930
- "countless hours of support, and including new features and suggestions. You "
931
- "get some useful software and I get to carry on making it. Everybody wins."
932
- msgstr ""
933
- "این امر سبب می‌شود که توسعه افزونه ادامه داشته باشد و ساعات بیشتری صرف توسعه "
934
- "این افزونه شود و هر نگارش شامل ویژگی‌های تازه شود. همه برنده‌اند. "
935
-
936
- #: view/admin/support.php:13
937
- msgid ""
938
- "If you are using this plugin in a commercial setup, or feel that it's been "
939
- "particularly useful, then you may want to consider a <strong>commercial "
940
- "donation</strong>."
941
- msgstr ""
942
- "اگر شما از این افزونه در راه‌اندازی‌های تجاری استفاده می‌کنید یا این افزونه را "
943
- "مفید می‌دانید شاید بخواهید کمک‌های نقدی تجاری را گزینش کنید."
944
-
945
- #: view/admin/support.php:36
946
- msgid "Individual<br/>Donation"
947
- msgstr "کمک مالی <br/> شخصی"
948
-
949
- #: view/admin/support.php:56
950
- msgid "Commercial<br/>Donation"
951
- msgstr "کمک مالی <br/> تجاری"
952
-
953
- #: view/admin/support.php:60
954
- msgid "Translations"
955
- msgstr "ترجمه‌ها"
956
-
957
- #: view/admin/support.php:62
958
- msgid ""
959
- "If you're multi-lingual then you may want to consider donating a translation:"
960
- msgstr ""
961
- "اگر به زبانی مسلط هستید شاید بخواهید ما را در ترجمه های این افزونه کمک کنید :"
962
-
963
- #: view/admin/support.php:70
964
- msgid ""
965
- "All translators will have a link to their website placed on the plugin "
966
- "homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/"
967
- "\">UrbanGiraffe</a>, in addition to being an individual supporter."
968
- msgstr ""
969
- "لینک وب‌سایت مترجم ها در صفحه افزونه در وب‌سایت <a href=\"http://urbangiraffe."
970
- "com/plugins/redirection/\">زرافه شهری</a> قرار خواهد گرفت."
971
-
972
- #: view/admin/support.php:71
973
- msgid ""
974
- "Full details of producing a translation can be found in this <a href="
975
- "\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/"
976
- "\">guide to translating WordPress plugins</a>."
977
- msgstr ""
978
- "<a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-"
979
- "plugins/\">آموزش ترجمه افزونه و پوسته وردپرس</a>."
980
-
981
- #. Plugin URI of the plugin/theme
982
- msgid "http://urbangiraffe.com/plugins/redirection/"
983
- msgstr "http://urbangiraffe.com/plugins/redirection/"
984
-
985
- #. Description of the plugin/theme
986
- msgid "Manage all your 301 redirects and monitor 404 errors"
987
- msgstr "مدیریت تمام ۳۰۱ تغییر مسیر و نظارت بر خطاهای ۴۰۴"
988
-
989
- #. Author of the plugin/theme
990
- msgid "John Godley"
991
- msgstr "جان گادلی"
992
-
993
- #. Author URI of the plugin/theme
994
- msgid "http://urbangiraffe.com"
995
- msgstr "http://urbangiraffe.com"
996
-
997
- #~ msgid "How many widgets would you like?"
998
- #~ msgstr "چه تعداد ابزارک را می‌پسندید ؟"
999
-
1000
- #~ msgid "404 Report for: "
1001
- #~ msgstr "404 Report for: "
1002
-
1003
- #~ msgid ""
1004
- #~ "An empty URL means the source URL is not redirected when the user is "
1005
- #~ "logged in/logged out."
1006
- #~ msgstr ""
1007
- #~ "An empty URL means the source URL is not redirected when the user is "
1008
- #~ "logged in/logged out."
1009
-
1010
- #~ msgid "Redirect to one of several URLs"
1011
- #~ msgstr "توجيه الى واحد من عناوينURL"
1012
-
1013
- #~ msgid "Redirect based on referrer"
1014
- #~ msgstr "Redirect based on referrer"
1015
-
1016
- #~ msgid "Referrer Regex"
1017
- #~ msgstr "Referrer Regex"
1018
-
1019
- #~ msgid "Not from referrer"
1020
- #~ msgstr "Not from referrer"
1021
-
1022
- #~ msgid "An empty URL means the source URL is not redirected."
1023
- #~ msgstr "المقصود URL خالي-URL الاصل لا يعتبر توجيه."
1024
-
1025
- #~ msgid "Simple redirection"
1026
- #~ msgstr "توجيه بسيط"
1027
-
1028
- #~ msgid "Redirection 404 Log"
1029
- #~ msgstr "Redirection 404 Log"
1030
-
1031
- #~ msgid "You have no 404 logs!"
1032
- #~ msgstr "لا يوجد سجلات اخطاء 404."
1033
-
1034
- #~ msgid ""
1035
- #~ "This will delete all logged 404 errors. Please be sure this is what you "
1036
- #~ "want to do."
1037
- #~ msgstr "هذه العملية قد تحذف جميع سجلات اخطاء 404.هل انت متأكد من الاستمرار؟"
1038
-
1039
- #~ msgid "Add redirection"
1040
- #~ msgstr "اضافة توجيه"
1041
-
1042
- #~ msgid "at"
1043
- #~ msgstr "عند"
1044
-
1045
- #~ msgid "Method"
1046
- #~ msgstr "اسلوب"
1047
-
1048
- #~ msgid "Open referrer"
1049
- #~ msgstr "توجيه مفتوح"
1050
-
1051
- #~ msgid "Last Referrer"
1052
- #~ msgstr "التوجيه الاخير"
1053
-
1054
- #~ msgid "You have no logs!"
1055
- #~ msgstr "لا يوجد سجلات"
1056
-
1057
- #~ msgid "Create 301 when post slug changes"
1058
- #~ msgstr "ایجاد 301 زمانی که"
1059
-
1060
- #~ msgid "Redirect index.php/index.html"
1061
- #~ msgstr "وجه index.php/index.html"
1062
-
1063
- #~ msgid "Root domain"
1064
- #~ msgstr "الملقم الاساسي"
1065
-
1066
- #~ msgid "Check for updates"
1067
- #~ msgstr "افحص التحديثات"
1068
-
1069
- #~ msgid "%s Redirections"
1070
- #~ msgstr "%s Redirections"
1071
-
1072
- #~ msgid "%s ago"
1073
- #~ msgstr "%s ago"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-fi.mo DELETED
Binary file
locale/redirection-fi.po DELETED
@@ -1,782 +0,0 @@
1
- # Translation of Plugins - Redirection - Stable (latest release) in Finnish
2
- # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2017-04-13 10:15:22+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: fi\n"
12
- "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
-
14
- #: redirection-strings.php:141
15
- msgid "Something went wrong 🙁"
16
- msgstr ""
17
-
18
- #: redirection-strings.php:140
19
- msgid "I was trying to do a thing and it went wrong. It may be a temporary issue and if you try again it could work - great!"
20
- msgstr ""
21
-
22
- #: redirection-strings.php:139
23
- msgid "It didn't work when I tried again"
24
- msgstr ""
25
-
26
- #: redirection-strings.php:138
27
- msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
28
- msgstr ""
29
-
30
- #: redirection-strings.php:137
31
- msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts, and knowing this in advance will help a lot."
32
- msgstr ""
33
-
34
- #: redirection-strings.php:136
35
- msgid "If this is a new problem then please either create a new issue, or send it directly to john@redirection.me. Include a description of what you were trying to do and the important details listed below. If you can include a screenshot then even better."
36
- msgstr ""
37
-
38
- #: redirection-strings.php:135
39
- msgid "Important details for the thing you just did"
40
- msgstr ""
41
-
42
- #: redirection-strings.php:134
43
- msgid "Please include these details in your report"
44
- msgstr ""
45
-
46
- #: redirection-admin.php:180
47
- msgid "Log entries (100 max)"
48
- msgstr ""
49
-
50
- #: redirection-strings.php:56
51
- msgid "Failed to load"
52
- msgstr ""
53
-
54
- #: redirection-strings.php:48
55
- msgid "Remove WWW"
56
- msgstr ""
57
-
58
- #: redirection-strings.php:47
59
- msgid "Add WWW"
60
- msgstr ""
61
-
62
- #: redirection-strings.php:133
63
- msgid "Search by IP"
64
- msgstr ""
65
-
66
- #: redirection-strings.php:129
67
- msgid "Select bulk action"
68
- msgstr ""
69
-
70
- #: redirection-strings.php:128
71
- msgid "Bulk Actions"
72
- msgstr ""
73
-
74
- #: redirection-strings.php:127
75
- msgid "Apply"
76
- msgstr ""
77
-
78
- #: redirection-strings.php:126
79
- msgid "First page"
80
- msgstr ""
81
-
82
- #: redirection-strings.php:125
83
- msgid "Prev page"
84
- msgstr ""
85
-
86
- #: redirection-strings.php:124
87
- msgid "Current Page"
88
- msgstr ""
89
-
90
- #: redirection-strings.php:123
91
- msgid "of %(page)s"
92
- msgstr ""
93
-
94
- #: redirection-strings.php:122
95
- msgid "Next page"
96
- msgstr ""
97
-
98
- #: redirection-strings.php:121
99
- msgid "Last page"
100
- msgstr ""
101
-
102
- #: redirection-strings.php:120
103
- msgid "%s item"
104
- msgid_plural "%s items"
105
- msgstr[0] ""
106
- msgstr[1] ""
107
-
108
- #: redirection-strings.php:119
109
- msgid "Select All"
110
- msgstr ""
111
-
112
- #: redirection-strings.php:131
113
- msgid "Sorry but something went wrong loading the data - please try again"
114
- msgstr ""
115
-
116
- #: redirection-strings.php:130
117
- msgid "No results"
118
- msgstr ""
119
-
120
- #: redirection-strings.php:26
121
- msgid "Delete the logs - are you sure?"
122
- msgstr ""
123
-
124
- #: redirection-strings.php:25
125
- msgid "Once deleted your current logs will no longer be available. You can set an delete schedule from the Redirection options if you want to do this automatically."
126
- msgstr ""
127
-
128
- #: redirection-strings.php:24
129
- msgid "Yes! Delete the logs"
130
- msgstr ""
131
-
132
- #: redirection-strings.php:23
133
- msgid "No! Don't delete the logs"
134
- msgstr ""
135
-
136
- #: redirection-admin.php:328
137
- msgid "Redirection 404"
138
- msgstr ""
139
-
140
- #: redirection-strings.php:116
141
- msgid "Thanks for subscribing! {{a}}Click here{{/a}} if you need to return to your subscription."
142
- msgstr ""
143
-
144
- #: redirection-strings.php:115 redirection-strings.php:117
145
- msgid "Newsletter"
146
- msgstr ""
147
-
148
- #: redirection-strings.php:114
149
- msgid "Want to keep up to date with changes to Redirection?"
150
- msgstr ""
151
-
152
- #: redirection-strings.php:113
153
- msgid "Sign up for the tiny Redirection newsletter - a low volume newsletter about new features and changes to the plugin. Ideal if want to test beta changes before release."
154
- msgstr ""
155
-
156
- #: redirection-strings.php:112
157
- msgid "Your email address:"
158
- msgstr ""
159
-
160
- #: redirection-strings.php:111
161
- msgid "I deleted a redirection, why is it still redirecting?"
162
- msgstr ""
163
-
164
- #: redirection-strings.php:110
165
- msgid "Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then {{a}}clear your browser cache{{/a}}."
166
- msgstr ""
167
-
168
- #: redirection-strings.php:109
169
- msgid "Can I open a redirect in a new tab?"
170
- msgstr ""
171
-
172
- #: redirection-strings.php:108
173
- msgid "It's not possible to do this on the server. Instead you will need to add {{code}}target=\"blank\"{{/code}} to your link."
174
- msgstr ""
175
-
176
- #: redirection-strings.php:107
177
- msgid "Something isn't working!"
178
- msgstr ""
179
-
180
- #: redirection-strings.php:106
181
- msgid "Please disable all other plugins and check if the problem persists. If it does please report it {{a}}here{{/a}} with full details about the problem and a way to reproduce it."
182
- msgstr ""
183
-
184
- #: redirection-strings.php:105
185
- msgid "Frequently Asked Questions"
186
- msgstr ""
187
-
188
- #: redirection-strings.php:104
189
- msgid "Need some help? Maybe one of these questions will provide an answer"
190
- msgstr ""
191
-
192
- #: redirection-strings.php:103
193
- msgid "You've already supported this plugin - thank you!"
194
- msgstr ""
195
-
196
- #: redirection-strings.php:102
197
- msgid "I'd like to donate some more"
198
- msgstr ""
199
-
200
- #: redirection-strings.php:100
201
- msgid "You get some useful software and I get to carry on making it better."
202
- msgstr ""
203
-
204
- #: redirection-strings.php:99
205
- msgid "Please note I do not provide support and this is just a donation."
206
- msgstr ""
207
-
208
- #: redirection-strings.php:98
209
- msgid "Yes I'd like to donate"
210
- msgstr ""
211
-
212
- #: redirection-strings.php:97
213
- msgid "Thank you for making a donation!"
214
- msgstr ""
215
-
216
- #: redirection-strings.php:91
217
- msgid "Forever"
218
- msgstr ""
219
-
220
- #: redirection-strings.php:88
221
- msgid "Failed to save data"
222
- msgstr ""
223
-
224
- #: redirection-strings.php:75
225
- msgid "Failed to load data"
226
- msgstr ""
227
-
228
- #: redirection-strings.php:71
229
- msgid "CSV Format"
230
- msgstr ""
231
-
232
- #: redirection-strings.php:70
233
- msgid "Source URL, Target URL, [Regex 0=false, 1=true], [HTTP Code]"
234
- msgstr ""
235
-
236
- #: redirection-strings.php:67
237
- msgid "Delete the plugin - are you sure?"
238
- msgstr ""
239
-
240
- #: redirection-strings.php:66
241
- msgid "Deleting the plugin will remove all your redirections, logs, and settings. Do this if you want to remove the plugin for good, or if you want to reset the plugin."
242
- msgstr ""
243
-
244
- #: redirection-strings.php:65
245
- msgid "Once deleted your redirections will stop working. If they appear to continue working then please clear your browser cache."
246
- msgstr ""
247
-
248
- #: redirection-strings.php:64
249
- msgid "Yes! Delete the plugin"
250
- msgstr ""
251
-
252
- #: redirection-strings.php:63
253
- msgid "No! Don't delete the plugin"
254
- msgstr ""
255
-
256
- #: view/item-edit.php:35
257
- msgid "Advanced Settings"
258
- msgstr "Edistyneet asetukset"
259
-
260
- #. Author URI of the plugin/theme
261
- msgid "http://urbangiraffe.com"
262
- msgstr "http://urbangiraffe.com"
263
-
264
- #. Author of the plugin/theme
265
- msgid "John Godley"
266
- msgstr "John Godley"
267
-
268
- #. Description of the plugin/theme
269
- msgid "Manage all your 301 redirects and monitor 404 errors"
270
- msgstr "Hallitse 301-uudelleenohjauksia ja seuraa 404-virheitä"
271
-
272
- #. Plugin URI of the plugin/theme
273
- msgid "http://urbangiraffe.com/plugins/redirection/"
274
- msgstr "http://urbangiraffe.com/plugins/redirection/"
275
-
276
- #: redirection-strings.php:101
277
- msgid "Redirection is free to use - life is wonderful and lovely! It has required a great deal of time and effort to develop and you can help support this development by {{strong}}making a small donation{{/strong}}."
278
- msgstr ""
279
-
280
- #: view/support.php:3
281
- msgid "Redirection Support"
282
- msgstr "Redirection-tuki"
283
-
284
- #: view/submenu.php:47
285
- msgid "Support"
286
- msgstr "Tuki"
287
-
288
- #: view/submenu.php:34
289
- msgid "404s"
290
- msgstr "404:t"
291
-
292
- #: view/submenu.php:32
293
- msgid "404s from %s"
294
- msgstr "404:t osoitteesta %s"
295
-
296
- #: view/submenu.php:23
297
- msgid "Log"
298
- msgstr "Loki"
299
-
300
- #: redirection-strings.php:69
301
- msgid "Delete Redirection"
302
- msgstr "Poista Redirection-lisäosa"
303
-
304
- #: redirection-strings.php:72
305
- msgid "Upload"
306
- msgstr "Siirrä palvelimelle"
307
-
308
- #: redirection-strings.php:73
309
- msgid "Here you can import redirections from an existing {{code}}.htaccess{{/code}} file, or a CSV file."
310
- msgstr ""
311
-
312
- #: redirection-strings.php:74
313
- msgid "Import"
314
- msgstr "Tuonti"
315
-
316
- #: redirection-strings.php:76
317
- msgid "Update"
318
- msgstr "Päivitä"
319
-
320
- #: redirection-strings.php:77
321
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to have a unique ID inserted (either decimal or hex)"
322
- msgstr ""
323
-
324
- #: redirection-strings.php:78
325
- msgid "Auto-generate URL"
326
- msgstr "Luo URL automaattisesti"
327
-
328
- #: redirection-strings.php:79
329
- msgid "A unique token allowing feed readers access to Redirection log RSS (leave blank to auto-generate)"
330
- msgstr "Uniikki merkkijono (token), jonka avulla RSS-lukijat pääsevät Redirection-lokiin (jätä tyhjäksi, jos haluat että se luodaan automaattisesti)"
331
-
332
- #: redirection-strings.php:80
333
- msgid "RSS Token"
334
- msgstr "RSS Token"
335
-
336
- #: redirection-strings.php:90
337
- msgid "Don't monitor"
338
- msgstr "Älä monitoroi"
339
-
340
- #: redirection-strings.php:81
341
- msgid "Monitor changes to posts"
342
- msgstr "Seuraa muutoksia sisällön osoitteissa"
343
-
344
- #: redirection-strings.php:83
345
- msgid "404 Logs"
346
- msgstr "404-lokit"
347
-
348
- #: redirection-strings.php:82 redirection-strings.php:84
349
- msgid "(time to keep logs for)"
350
- msgstr "(aika lokien säilyttämiseen)"
351
-
352
- #: redirection-strings.php:85
353
- msgid "Redirect Logs"
354
- msgstr "Uudelleenohjausloki"
355
-
356
- #: redirection-strings.php:86
357
- msgid "I'm a nice person and I have helped support the author of this plugin"
358
- msgstr "Olen kiva typpi ja olen auttanut tukemalla lisäosan kehittäjää"
359
-
360
- #: redirection-strings.php:87
361
- msgid "Plugin support"
362
- msgstr ""
363
-
364
- #: view/options.php:4 view/submenu.php:42
365
- msgid "Options"
366
- msgstr "Asetukset"
367
-
368
- #: redirection-strings.php:92
369
- msgid "Two months"
370
- msgstr "Kaksi kuukautta"
371
-
372
- #: redirection-strings.php:93
373
- msgid "A month"
374
- msgstr "Kuukausi"
375
-
376
- #: redirection-strings.php:94
377
- msgid "A week"
378
- msgstr "Viikko"
379
-
380
- #: redirection-strings.php:95
381
- msgid "A day"
382
- msgstr "Päivä"
383
-
384
- #: redirection-strings.php:96
385
- msgid "No logs"
386
- msgstr "Ei lokeja"
387
-
388
- #: view/module-list.php:3 view/submenu.php:16
389
- msgid "Modules"
390
- msgstr "Moduulit"
391
-
392
- #: redirection-strings.php:28
393
- msgid "Export to CSV"
394
- msgstr ""
395
-
396
- #: redirection-strings.php:27
397
- msgid "Delete All"
398
- msgstr "Poista kaikki"
399
-
400
- #: redirection-admin.php:322
401
- msgid "Redirection Log"
402
- msgstr "Uudelleenohjausloki"
403
-
404
- #: view/item-edit.php:14
405
- msgid "optional"
406
- msgstr "valinnainen"
407
-
408
- #: view/item-edit.php:11
409
- msgid "Description"
410
- msgstr "Kuvaus"
411
-
412
- #: redirection-strings.php:5
413
- msgid "Use groups to organise your redirects. Groups are assigned to a module, which affects how the redirects in that group work. If you are unsure then stick to the WordPress module."
414
- msgstr "Käytä ryhmiä uudelleenohjauksiesi organisoimiseen. Ryhmät on asetettu moduuleille, mikä vaikuttaa kuinka sen ryhmän uudelleenohjaukset toimivat. Jos olet epävarma, pysyttele WordPress-moduulissa."
415
-
416
- #: redirection-strings.php:6
417
- msgid "Add Group"
418
- msgstr "Lisää Ryhmä"
419
-
420
- #: redirection-strings.php:132 view/item-list.php:10
421
- msgid "Search"
422
- msgstr "Haku"
423
-
424
- #: view/group-list.php:3 view/submenu.php:11
425
- msgid "Groups"
426
- msgstr "Ryhmät"
427
-
428
- #: redirection-strings.php:15 redirection-strings.php:45 view/item-edit.php:32
429
- msgid "Save"
430
- msgstr "Tallenna"
431
-
432
- #: view/add.php:46
433
- msgid "Add Redirection"
434
- msgstr "Lisää uudelleenohjaus"
435
-
436
- #: view/add.php:36 view/item-edit.php:18
437
- msgid "Group"
438
- msgstr "Ryhmä"
439
-
440
- #: view/add.php:28
441
- msgid "Regular expression"
442
- msgstr "Säännöllinen lauseke (regex)"
443
-
444
- #: view/add.php:23
445
- msgid "Action"
446
- msgstr "Toiminto"
447
-
448
- #: view/add.php:17
449
- msgid "Match"
450
- msgstr "Vertaa"
451
-
452
- #: view/add.php:7
453
- msgid "Your redirection has been added."
454
- msgstr "Uudelleenohjaus lisätty."
455
-
456
- #: view/add.php:4
457
- msgid "Add new redirection"
458
- msgstr "Lisää uusi uudelleenohjaus"
459
-
460
- #: redirection-strings.php:14 redirection-strings.php:44
461
- #: redirection-strings.php:54 view/item-edit.php:33
462
- msgid "Cancel"
463
- msgstr "Peruuta"
464
-
465
- #: redirection-strings.php:55
466
- msgid "Download"
467
- msgstr "Lataa"
468
-
469
- #: redirection-admin.php:407
470
- msgid "Sorry, but your redirection was not created"
471
- msgstr "Pahoittelut. Uudelleenohjausta ei luotu"
472
-
473
- #: redirection-admin.php:344 redirection-admin.php:365
474
- #: redirection-admin.php:387
475
- msgid "Unable to perform action"
476
- msgstr "Toimintoa ei voida suorittaa"
477
-
478
- #: redirection-admin.php:311
479
- msgid "No items were imported"
480
- msgstr "Yhtään merkintää ei tuotu"
481
-
482
- #: redirection-admin.php:309
483
- msgid "%d redirection was successfully imported"
484
- msgid_plural "%d redirections were successfully imported"
485
- msgstr[0] "%d uudelleenohjaus tuotiin onnistuneesti"
486
- msgstr[1] "%d uudelleenohjausta tuotiin onnistuneesti"
487
-
488
- #: redirection-strings.php:89
489
- msgid "Your options were updated"
490
- msgstr "Asetukset päivitetty"
491
-
492
- #. Plugin Name of the plugin/theme
493
- msgid "Redirection"
494
- msgstr "Uudelleenohjaus"
495
-
496
- #: redirection-admin.php:165
497
- msgid "Settings"
498
- msgstr "Asetukset"
499
-
500
- #: redirection-strings.php:62
501
- msgid "WordPress-powered redirects. This requires no further configuration, and you can track hits."
502
- msgstr "WordPressin tekemät uudelleenohjaukset. Tämä ei vaadi enempää konfigurointia ja voit tutkia käyttömääriä."
503
-
504
- #: redirection-strings.php:60
505
- msgid "For use with Nginx server. Requires manual configuration. The redirect happens without loading WordPress. No tracking of hits. This is an experimental module."
506
- msgstr "Käytettäväksi Nginx-palvelimille. Vaatii manuaalisen asennuksen. Uudelleenohjaus tapahtuu lataamatta WordPressiä. Käyttömääriä ei seurata. Tämä on kokeellinen moduuli."
507
-
508
- #: redirection-strings.php:61
509
- msgid "Uses Apache {{code}}.htaccess{{/code}} files. Requires further configuration. The redirect happens without loading WordPress. No tracking of hits."
510
- msgstr ""
511
-
512
- #: redirection-strings.php:46
513
- msgid "Automatically remove or add www to your site."
514
- msgstr "Lisää tai poista www automaattisesti sivustollesi."
515
-
516
- #: redirection-strings.php:49
517
- msgid "Default server"
518
- msgstr "Oletuspalvelin"
519
-
520
- #: redirection-strings.php:50
521
- msgid "Canonical URL"
522
- msgstr "Kanoninen URL"
523
-
524
- #: redirection-strings.php:51
525
- msgid "WordPress is installed in: {{code}}%s{{/code}}"
526
- msgstr ""
527
-
528
- #: redirection-strings.php:52
529
- msgid "If you want Redirection to automatically update your {{code}}.htaccess{{/code}} file then enter the full path and filename here. You can also download the file and update it manually."
530
- msgstr ""
531
-
532
- #: redirection-strings.php:53
533
- msgid ".htaccess Location"
534
- msgstr ".htaccess-tiedoston sijainti"
535
-
536
- #: models/redirect.php:382
537
- msgid "Do nothing"
538
- msgstr "Älä tee mitään"
539
-
540
- #: models/redirect.php:381
541
- msgid "Error (404)"
542
- msgstr "Virhe (404)"
543
-
544
- #: models/redirect.php:380
545
- msgid "Pass-through"
546
- msgstr "Läpikulku"
547
-
548
- #: models/redirect.php:379
549
- msgid "Redirect to random post"
550
- msgstr "Uudelleenohjaus satunnaiseen artikkeliin"
551
-
552
- #: models/redirect.php:378
553
- msgid "Redirect to URL"
554
- msgstr "Uudelleenohjaa osoitteeseen"
555
-
556
- #: models/redirect.php:216
557
- msgid "Unable to add new redirect - delete Redirection from the options page and re-install"
558
- msgstr "Uutta uudelleenohjausta ei voitu tehdä - poista Redirection asetuksista ja asenna uudestaan"
559
-
560
- #: models/redirect.php:178
561
- msgid "Invalid source URL when creating redirect for given match type"
562
- msgstr "Lähdeosoite ei kelpaa tälle vertailutyypille"
563
-
564
- #: models/redirect.php:174
565
- msgid "Invalid group when creating redirect"
566
- msgstr "Epäkelpo ryhmä uudelleenohjausta luotaessa"
567
-
568
- #: models/redirect.php:166
569
- msgid "You can only redirect from a relative URL (<code>%s</code>) on this domain (<code>%s</code>)."
570
- msgstr "Voit tehdä uudelleenohjauksia ainoastaan relatiivisista URL-osoittesta (<code>%s</code>) tällä domainilla (<code>%s</code>)."
571
-
572
- #: models/redirect.php:160
573
- msgid "Source and target URL must be different"
574
- msgstr "Lähde- ja kohdeosoitteiden tulee erota toisistaan"
575
-
576
- #: redirection-strings.php:59
577
- msgid "Configure"
578
- msgstr "Konfiguroi"
579
-
580
- #: redirection-strings.php:34 redirection-strings.php:41
581
- msgid "Show only this IP"
582
- msgstr "Näytä vain Tämä IP"
583
-
584
- #: redirection-strings.php:30 redirection-strings.php:37
585
- msgid "IP"
586
- msgstr "IP"
587
-
588
- #: redirection-strings.php:32 redirection-strings.php:39 view/add.php:13
589
- #: view/item-edit.php:4
590
- msgid "Source URL"
591
- msgstr "Lähde-URL"
592
-
593
- #: redirection-strings.php:33 redirection-strings.php:40
594
- msgid "Date"
595
- msgstr "Päiväys"
596
-
597
- #: redirection-strings.php:42
598
- msgid "Add Redirect"
599
- msgstr ""
600
-
601
- #: redirection-strings.php:7
602
- msgid "All modules"
603
- msgstr "Kaikki moduulit"
604
-
605
- #: redirection-strings.php:20
606
- msgid "View Redirects"
607
- msgstr "Näytä uudelleenohjaukset"
608
-
609
- #: redirection-strings.php:11 redirection-strings.php:16
610
- #: redirection-strings.php:58
611
- msgid "Module"
612
- msgstr "Moduuli"
613
-
614
- #: redirection-strings.php:12 redirection-strings.php:57 view/submenu.php:6
615
- msgid "Redirects"
616
- msgstr "Uudelleenohjaukset"
617
-
618
- #: redirection-strings.php:4 redirection-strings.php:13
619
- #: redirection-strings.php:17
620
- msgid "Name"
621
- msgstr "Nimi"
622
-
623
- #: models/pager.php:164 redirection-strings.php:118
624
- msgid "Filter"
625
- msgstr "Suodata"
626
-
627
- #: models/pager.php:151
628
- msgid "No group filter"
629
- msgstr "Ei ryhmäsuodatinta"
630
-
631
- #: models/pager.php:104
632
- msgid "Reset Hits"
633
- msgstr "Nollaa osumat"
634
-
635
- #: models/pager.php:61 models/pager.php:102 redirection-strings.php:9
636
- #: redirection-strings.php:18
637
- msgid "Enable"
638
- msgstr "Käytä"
639
-
640
- #: models/pager.php:59 models/pager.php:103 redirection-strings.php:8
641
- #: redirection-strings.php:19
642
- msgid "Disable"
643
- msgstr "Poista käytöstä"
644
-
645
- #: models/pager.php:54 models/pager.php:101 redirection-strings.php:10
646
- #: redirection-strings.php:21 redirection-strings.php:29
647
- #: redirection-strings.php:35 redirection-strings.php:36
648
- #: redirection-strings.php:43 redirection-strings.php:68
649
- msgid "Delete"
650
- msgstr "Poista"
651
-
652
- #: models/pager.php:53 redirection-strings.php:22
653
- msgid "Edit"
654
- msgstr "Muokkaa"
655
-
656
- #: models/pager.php:31
657
- msgid "Last Access"
658
- msgstr "Käytetty viimeksi"
659
-
660
- #: models/pager.php:30
661
- msgid "Hits"
662
- msgstr "Osumat"
663
-
664
- #: models/pager.php:29
665
- msgid "URL"
666
- msgstr "URL"
667
-
668
- #: models/pager.php:28
669
- msgid "Type"
670
- msgstr "Laji"
671
-
672
- #: models/database.php:121
673
- msgid "Modified Posts"
674
- msgstr "Muokatut artikkelit"
675
-
676
- #: models/database.php:120 models/group.php:114 view/item-list.php:3
677
- msgid "Redirections"
678
- msgstr "Uudelleenohjaukset"
679
-
680
- #: matches/user-agent.php:51
681
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
682
- msgstr "Kävijä ohjataan lähtöosoitteesta jos user agent täsmää. Voit syöttää <em>verrattavan</em> kohdeosoitteen paikaksi, jonne halutut kävijät uudelleenohjataan sekä niille, joiden osoite <em>ei täsmää</em>. Jos jätät URL-osoitteen tyhjäksi, kävijää ei ohjata. <strong>Kaikki vertailu tehdään säännönmukaisilla lauseilla (regex)</strong>.\n"
683
-
684
- #: matches/user-agent.php:25
685
- msgid "User Agent"
686
- msgstr "Selain"
687
-
688
- #: matches/user-agent.php:20
689
- msgid "Nintendo Wii"
690
- msgstr "Nintendo Wii"
691
-
692
- #: matches/user-agent.php:19
693
- msgid "Android"
694
- msgstr "Android"
695
-
696
- #: matches/user-agent.php:18
697
- msgid "iPad"
698
- msgstr "iPad"
699
-
700
- #: matches/user-agent.php:17
701
- msgid "iPhone"
702
- msgstr "iPhone"
703
-
704
- #: matches/user-agent.php:16
705
- msgid "Safari"
706
- msgstr "Safari"
707
-
708
- #: matches/user-agent.php:15
709
- msgid "Opera"
710
- msgstr "Opera"
711
-
712
- #: matches/user-agent.php:14
713
- msgid "FireFox"
714
- msgstr "FireFox"
715
-
716
- #: matches/user-agent.php:13
717
- msgid "Internet Explorer"
718
- msgstr "Internet Explorer"
719
-
720
- #: matches/user-agent.php:12
721
- msgid "FeedBurner"
722
- msgstr "FeedBurner"
723
-
724
- #: matches/user-agent.php:7
725
- msgid "URL and user agent"
726
- msgstr "URL ja user agent"
727
-
728
- #: matches/url.php:12 view/add.php:32
729
- msgid "Target URL"
730
- msgstr "Kohde-URL"
731
-
732
- #: matches/url.php:5
733
- msgid "URL only"
734
- msgstr "Vain URL"
735
-
736
- #: matches/referrer.php:56 matches/referrer.php:58 matches/user-agent.php:68
737
- #: matches/user-agent.php:70
738
- msgid "Not matched"
739
- msgstr "Ei-täsmäävät"
740
-
741
- #: matches/referrer.php:46 matches/referrer.php:48 matches/user-agent.php:58
742
- #: matches/user-agent.php:60
743
- msgid "Matched"
744
- msgstr "Täsmäävät"
745
-
746
- #: matches/referrer.php:40
747
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
748
- msgstr "Kävijä uudelleenohjataan lähtöosoitteesta jos referrer-tieto täsmää. Voit syöttää <em>täsmääville</em> kohdeosoitteen ja <em>muille</em> oman osoitteen. Jos jätät URL-osoitteen tyhjäksi, kävijää ei uudelleenohjata."
749
-
750
- #: matches/referrer.php:28 matches/referrer.php:38 matches/url.php:20
751
- #: matches/user-agent.php:38
752
- msgid "HTTP Code"
753
- msgstr "HTTP-koodi"
754
-
755
- #: matches/referrer.php:24 view/item-edit.php:7
756
- msgid "Regex"
757
- msgstr "Regex"
758
-
759
- #: matches/referrer.php:21 redirection-strings.php:31
760
- #: redirection-strings.php:38
761
- msgid "Referrer"
762
- msgstr "Referrer"
763
-
764
- #: matches/referrer.php:8
765
- msgid "URL and referrer"
766
- msgstr "URL ja referrer"
767
-
768
- #: matches/login.php:35 matches/login.php:37
769
- msgid "Logged Out"
770
- msgstr "Kirjautumaton"
771
-
772
- #: matches/login.php:23 matches/login.php:25
773
- msgid "Logged In"
774
- msgstr "Kirjautunut"
775
-
776
- #: matches/login.php:16
777
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
778
- msgstr "Kohdeosoite valitaan seuraavista osoitteista riippuen onko käyttäjä kirjautunut sisään. Jos jätät URL-osoitteen tyhjäksi, käyttäjää ei uudelleenohjata."
779
-
780
- #: matches/login.php:7
781
- msgid "URL and login status"
782
- msgstr "URL ja kirjautumistila"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-fr_FR.mo CHANGED
Binary file
locale/redirection-fr_FR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2017-10-06 12:47:45+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -13,7 +13,7 @@ msgstr ""
13
 
14
  #. Plugin URI of the plugin/theme
15
  msgid "https://redirection.me/"
16
- msgstr ""
17
 
18
  #: redirection-strings.php:230
19
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
@@ -29,15 +29,15 @@ msgstr ""
29
 
30
  #: redirection-strings.php:159
31
  msgid "Never cache"
32
- msgstr ""
33
 
34
  #: redirection-strings.php:158
35
  msgid "An hour"
36
- msgstr ""
37
 
38
  #: redirection-strings.php:135
39
  msgid "Redirect Cache"
40
- msgstr ""
41
 
42
  #: redirection-strings.php:134
43
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
@@ -45,7 +45,7 @@ msgstr ""
45
 
46
  #: redirection-strings.php:72
47
  msgid "Are you sure you want to import from %s?"
48
- msgstr ""
49
 
50
  #: redirection-strings.php:71
51
  msgid "Plugin Importers"
@@ -53,27 +53,27 @@ msgstr ""
53
 
54
  #: redirection-strings.php:70
55
  msgid "The following redirect plugins were detected on your site and can be imported from."
56
- msgstr ""
57
 
58
  #: redirection-strings.php:53
59
  msgid "total = "
60
- msgstr ""
61
 
62
  #: redirection-strings.php:52
63
  msgid "Import from %s"
64
- msgstr ""
65
 
66
  #: redirection-admin.php:252
67
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
68
- msgstr ""
69
 
70
  #: redirection-admin.php:251
71
  msgid "Redirection not installed properly"
72
- msgstr ""
73
 
74
  #: redirection-admin.php:233
75
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
76
- msgstr ""
77
 
78
  #: models/importer.php:149
79
  msgid "Default WordPress \"old slugs\""
@@ -81,39 +81,39 @@ msgstr ""
81
 
82
  #: redirection-strings.php:151
83
  msgid "Create associated redirect (added to end of URL)"
84
- msgstr ""
85
 
86
  #: redirection-admin.php:291
87
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
88
- msgstr ""
89
 
90
  #: redirection-strings.php:240
91
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
92
- msgstr ""
93
 
94
  #: redirection-strings.php:239
95
  msgid "⚡️ Magic fix ⚡️"
96
- msgstr ""
97
 
98
  #: redirection-strings.php:238
99
  msgid "Plugin Status"
100
- msgstr ""
101
 
102
  #: redirection-strings.php:218
103
  msgid "Custom"
104
- msgstr ""
105
 
106
  #: redirection-strings.php:217
107
  msgid "Mobile"
108
- msgstr ""
109
 
110
  #: redirection-strings.php:216
111
  msgid "Feed Readers"
112
- msgstr ""
113
 
114
  #: redirection-strings.php:215
115
  msgid "Libraries"
116
- msgstr ""
117
 
118
  #: redirection-strings.php:154
119
  msgid "URL Monitor Changes"
@@ -121,39 +121,39 @@ msgstr ""
121
 
122
  #: redirection-strings.php:153
123
  msgid "Save changes to this group"
124
- msgstr ""
125
 
126
  #: redirection-strings.php:152
127
  msgid "For example \"/amp\""
128
- msgstr ""
129
 
130
  #: redirection-strings.php:145
131
  msgid "URL Monitor"
132
- msgstr ""
133
 
134
  #: redirection-strings.php:143
135
  msgid "Monitor changes to pages"
136
- msgstr ""
137
 
138
  #: redirection-strings.php:142
139
  msgid "Monitor trashed items (will create disabled redirects)"
140
- msgstr ""
141
 
142
  #: redirection-strings.php:110
143
  msgid "Delete 404s"
144
- msgstr ""
145
 
146
  #: redirection-strings.php:109
147
  msgid "Delete all logs for this 404"
148
- msgstr ""
149
 
150
  #: redirection-strings.php:92
151
  msgid "Delete all from IP %s"
152
- msgstr ""
153
 
154
  #: redirection-strings.php:91
155
  msgid "Delete all matching \"%s\""
156
- msgstr ""
157
 
158
  #: redirection-strings.php:15
159
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
@@ -161,23 +161,23 @@ msgstr ""
161
 
162
  #: redirection-admin.php:288
163
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
164
- msgstr ""
165
 
166
  #: redirection-admin.php:287 redirection-strings.php:40
167
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
168
- msgstr ""
169
 
170
  #: redirection-admin.php:232 redirection-admin.php:285
171
  msgid "Unable to load Redirection"
172
- msgstr ""
173
 
174
  #: models/fixer.php:77
175
  msgid "Unable to create group"
176
- msgstr ""
177
 
178
  #: models/fixer.php:69
179
  msgid "Failed to fix database tables"
180
- msgstr ""
181
 
182
  #: models/fixer.php:34
183
  msgid "Post monitor group is valid"
@@ -193,39 +193,39 @@ msgstr ""
193
 
194
  #: models/fixer.php:28
195
  msgid "All redirects have a valid group"
196
- msgstr ""
197
 
198
  #: models/fixer.php:28
199
  msgid "Redirects with invalid groups detected"
200
- msgstr ""
201
 
202
  #: models/fixer.php:26
203
  msgid "Valid redirect group"
204
- msgstr ""
205
 
206
  #: models/fixer.php:22
207
  msgid "Valid groups detected"
208
- msgstr ""
209
 
210
  #: models/fixer.php:22
211
  msgid "No valid groups, so you will not be able to create any redirects"
212
- msgstr ""
213
 
214
  #: models/fixer.php:20
215
  msgid "Valid groups"
216
- msgstr ""
217
 
218
  #: models/fixer.php:18
219
  msgid "Database tables"
220
- msgstr ""
221
 
222
  #: models/database.php:280
223
  msgid "The following tables are missing:"
224
- msgstr ""
225
 
226
  #: models/database.php:280
227
  msgid "All tables present"
228
- msgstr ""
229
 
230
  #: redirection-strings.php:44
231
  msgid "Cached Redirection detected"
@@ -233,7 +233,7 @@ msgstr "Redirection en cache détectée"
233
 
234
  #: redirection-strings.php:43
235
  msgid "Please clear your browser cache and reload this page."
236
- msgstr ""
237
 
238
  #: redirection-strings.php:18
239
  msgid "The data on this page has expired, please reload."
@@ -569,7 +569,7 @@ msgstr "Cela n’a pas fonctionné quand j’ai réessayé."
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr "Voyez si votre problème est décrit dans la liste des {{link}}problèmes de redirection{{/ link}} exceptionnels. Veuillez ajouter plus de détails si vous rencontrez le même problème."
571
 
572
- #: redirection-admin.php:175
573
  msgid "Log entries (%d max)"
574
  msgstr "Entrées du journal (100 max.)"
575
 
@@ -852,7 +852,7 @@ msgstr "Télécharger"
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
- #: redirection-admin.php:155
856
  msgid "Settings"
857
  msgstr "Réglages"
858
 
2
  # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2017-12-01 09:40:40+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
13
 
14
  #. Plugin URI of the plugin/theme
15
  msgid "https://redirection.me/"
16
+ msgstr "https://redirection.me/"
17
 
18
  #: redirection-strings.php:230
19
  msgid "Full documentation for Redirection can be found at {{site}}https://redirection.me{{/site}}. If you have a problem please check the {{faq}}FAQ{{/faq}} first."
29
 
30
  #: redirection-strings.php:159
31
  msgid "Never cache"
32
+ msgstr "Jamais de cache"
33
 
34
  #: redirection-strings.php:158
35
  msgid "An hour"
36
+ msgstr "Une heure"
37
 
38
  #: redirection-strings.php:135
39
  msgid "Redirect Cache"
40
+ msgstr "Cache de redirection"
41
 
42
  #: redirection-strings.php:134
43
  msgid "How long to cache redirected 301 URLs (via \"Expires\" HTTP header)"
45
 
46
  #: redirection-strings.php:72
47
  msgid "Are you sure you want to import from %s?"
48
+ msgstr "Confirmez-vous l’importation depuis %s ?"
49
 
50
  #: redirection-strings.php:71
51
  msgid "Plugin Importers"
53
 
54
  #: redirection-strings.php:70
55
  msgid "The following redirect plugins were detected on your site and can be imported from."
56
+ msgstr "Les extensions de redirection suivantes ont été détectées sur votre site et peuvent être importées."
57
 
58
  #: redirection-strings.php:53
59
  msgid "total = "
60
+ msgstr "total = "
61
 
62
  #: redirection-strings.php:52
63
  msgid "Import from %s"
64
+ msgstr "Importer depuis %s"
65
 
66
  #: redirection-admin.php:252
67
  msgid "Problems were detected with your database tables. Please visit the <a href=\"%s\">support page</a> for more details."
68
+ msgstr "Des problèmes ont été détectés avec les tables de votre base de données. Veuillez visiter la <a href=\"%s\">page de support</a> pour plus de détails."
69
 
70
  #: redirection-admin.php:251
71
  msgid "Redirection not installed properly"
72
+ msgstr "Redirection n’est pas correctement installé"
73
 
74
  #: redirection-admin.php:233
75
  msgid "Redirection requires WordPress v%1s, you are using v%2s - please update your WordPress"
76
+ msgstr "Redirection nécessite WordPress v%1s, vous utilisez v%2s. Veuillez mettre à jour votre installation WordPress."
77
 
78
  #: models/importer.php:149
79
  msgid "Default WordPress \"old slugs\""
81
 
82
  #: redirection-strings.php:151
83
  msgid "Create associated redirect (added to end of URL)"
84
+ msgstr "Créer une redirection associée (ajoutée à la fin de l’URL)"
85
 
86
  #: redirection-admin.php:291
87
  msgid "<code>Redirectioni10n</code> is not defined. This usually means another plugin is blocking Redirection from loading. Please disable all plugins and try again."
88
+ msgstr "<code>Redirectioni10n</code> n’est pas défini. Cela signifie généralement qu’une autre extension bloque le chargement de Redirection. Veuillez désactiver toutes les extensions et réessayer."
89
 
90
  #: redirection-strings.php:240
91
  msgid "If the magic button doesn't work then you should read the error and see if you can fix it manually, otherwise follow the 'Need help' section below."
92
+ msgstr "Si le bouton magique ne fonctionne pas, veuillez lire l’erreur et voir si vous pouvez le réparer manuellement, sinon suivez la section « Besoin d’aide » ci-dessous."
93
 
94
  #: redirection-strings.php:239
95
  msgid "⚡️ Magic fix ⚡️"
96
+ msgstr "⚡️ Correction magique ⚡️"
97
 
98
  #: redirection-strings.php:238
99
  msgid "Plugin Status"
100
+ msgstr "Statut de l’extension"
101
 
102
  #: redirection-strings.php:218
103
  msgid "Custom"
104
+ msgstr "Personnalisé"
105
 
106
  #: redirection-strings.php:217
107
  msgid "Mobile"
108
+ msgstr "Mobile"
109
 
110
  #: redirection-strings.php:216
111
  msgid "Feed Readers"
112
+ msgstr "Lecteurs de flux"
113
 
114
  #: redirection-strings.php:215
115
  msgid "Libraries"
116
+ msgstr "Librairies"
117
 
118
  #: redirection-strings.php:154
119
  msgid "URL Monitor Changes"
121
 
122
  #: redirection-strings.php:153
123
  msgid "Save changes to this group"
124
+ msgstr "Enregistrer les modifications apportées à ce groupe"
125
 
126
  #: redirection-strings.php:152
127
  msgid "For example \"/amp\""
128
+ msgstr "Par exemple « /amp »"
129
 
130
  #: redirection-strings.php:145
131
  msgid "URL Monitor"
132
+ msgstr "URL à surveiller"
133
 
134
  #: redirection-strings.php:143
135
  msgid "Monitor changes to pages"
136
+ msgstr "Surveiller les modifications apportées aux pages"
137
 
138
  #: redirection-strings.php:142
139
  msgid "Monitor trashed items (will create disabled redirects)"
140
+ msgstr "Surveiller les éléments supprimés (crée des redirections désactivées)"
141
 
142
  #: redirection-strings.php:110
143
  msgid "Delete 404s"
144
+ msgstr "Supprimer les pages 404"
145
 
146
  #: redirection-strings.php:109
147
  msgid "Delete all logs for this 404"
148
+ msgstr "Supprimer tous les journaux pour cette page 404"
149
 
150
  #: redirection-strings.php:92
151
  msgid "Delete all from IP %s"
152
+ msgstr "Tout supprimer depuis l’IP %s"
153
 
154
  #: redirection-strings.php:91
155
  msgid "Delete all matching \"%s\""
156
+ msgstr "Supprimer toutes les correspondances « %s »"
157
 
158
  #: redirection-strings.php:15
159
  msgid "Your server has rejected the request for being too big. You will need to change it to continue."
161
 
162
  #: redirection-admin.php:288
163
  msgid "Also check if your browser is able to load <code>redirection.js</code>:"
164
+ msgstr "Vérifiez également si votre navigateur est capable de charger <code>redirection.js</code> :"
165
 
166
  #: redirection-admin.php:287 redirection-strings.php:40
167
  msgid "If you are using a page caching plugin or service (CloudFlare, OVH, etc) then you can also try clearing that cache."
168
+ msgstr "Si vous utilisez une extension ou un service de mise en cache de pages (CloudFlare, OVH, etc.), vous pouvez également essayer de vider ce cache."
169
 
170
  #: redirection-admin.php:232 redirection-admin.php:285
171
  msgid "Unable to load Redirection"
172
+ msgstr "Impossible de charger Redirection"
173
 
174
  #: models/fixer.php:77
175
  msgid "Unable to create group"
176
+ msgstr "Impossible de créer un groupe"
177
 
178
  #: models/fixer.php:69
179
  msgid "Failed to fix database tables"
180
+ msgstr "La réparation des tables de la base de données a échoué."
181
 
182
  #: models/fixer.php:34
183
  msgid "Post monitor group is valid"
193
 
194
  #: models/fixer.php:28
195
  msgid "All redirects have a valid group"
196
+ msgstr "Toutes les redirections ont un groupe valide"
197
 
198
  #: models/fixer.php:28
199
  msgid "Redirects with invalid groups detected"
200
+ msgstr "Redirections avec des groupes non valides détectées"
201
 
202
  #: models/fixer.php:26
203
  msgid "Valid redirect group"
204
+ msgstr "Groupe de redirection valide"
205
 
206
  #: models/fixer.php:22
207
  msgid "Valid groups detected"
208
+ msgstr "Groupes valides détectés"
209
 
210
  #: models/fixer.php:22
211
  msgid "No valid groups, so you will not be able to create any redirects"
212
+ msgstr "Aucun groupe valide, vous ne pourrez pas créer de redirections."
213
 
214
  #: models/fixer.php:20
215
  msgid "Valid groups"
216
+ msgstr "Groupes valides"
217
 
218
  #: models/fixer.php:18
219
  msgid "Database tables"
220
+ msgstr "Tables de la base de données"
221
 
222
  #: models/database.php:280
223
  msgid "The following tables are missing:"
224
+ msgstr "Les tables suivantes sont manquantes :"
225
 
226
  #: models/database.php:280
227
  msgid "All tables present"
228
+ msgstr "Toutes les tables présentes"
229
 
230
  #: redirection-strings.php:44
231
  msgid "Cached Redirection detected"
233
 
234
  #: redirection-strings.php:43
235
  msgid "Please clear your browser cache and reload this page."
236
+ msgstr "Veuillez vider le cache de votre navigateur et recharger cette page."
237
 
238
  #: redirection-strings.php:18
239
  msgid "The data on this page has expired, please reload."
569
  msgid "See if your problem is described on the list of outstanding {{link}}Redirection issues{{/link}}. Please add more details if you find the same problem."
570
  msgstr "Voyez si votre problème est décrit dans la liste des {{link}}problèmes de redirection{{/ link}} exceptionnels. Veuillez ajouter plus de détails si vous rencontrez le même problème."
571
 
572
+ #: redirection-admin.php:174
573
  msgid "Log entries (%d max)"
574
  msgstr "Entrées du journal (100 max.)"
575
 
852
  msgid "Redirection"
853
  msgstr "Redirection"
854
 
855
+ #: redirection-admin.php:154
856
  msgid "Settings"
857
  msgstr "Réglages"
858
 
locale/redirection-he_IL.mo DELETED
Binary file
locale/redirection-he_IL.po DELETED
@@ -1,315 +0,0 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: Redirection 1.7.26\n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2007-08-10 11:07+0800\n"
11
- "PO-Revision-Date: 2008-11-10 06:06+0200\n"
12
- "Last-Translator: Rami Yushuvaev <r_a_m_i@hotmail.com>\n"
13
- "Language-Team: Rami Yushuvaev <r_a_m_i@hotmail.com>\n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=utf-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: Hebrew\n"
18
- "X-Poedit-Country: ISRAEL\n"
19
- "X-Poedit-SourceCharset: utf-8\n"
20
- "X-Poedit-KeywordsList: __;_e;__ ;_e\n"
21
- "X-Poedit-Basepath: .\n"
22
-
23
- #: redirection/plugin.php:613
24
- msgid "How many widgets would you like?"
25
- msgstr "כמה ווידג'טים?"
26
-
27
- #: redirection/plugin.php:620
28
- #: redirection/view/admin/item_details.php:40
29
- msgid "Save"
30
- msgstr "שמור"
31
-
32
- #: redirection/redirection.php:153
33
- msgid "Redirection"
34
- msgstr "הפניות"
35
-
36
- #: redirection/redirection.php:253
37
- msgid "Your logs have been deleted"
38
- msgstr "הרישומים נמחקו"
39
-
40
- #: redirection/models/pager.php:382
41
- msgid "Previous"
42
- msgstr "קודם"
43
-
44
- #: redirection/models/pager.php:383
45
- msgid "Next"
46
- msgstr "הבא"
47
-
48
- #: redirection/models/rss.php:15
49
- msgid "404 Report for: "
50
- msgstr "404 Report for: "
51
-
52
- #: redirection/redirectors/login.php:24
53
- msgid "Redirect based on login status"
54
- msgstr "Redirect based on login status"
55
-
56
- #: redirection/redirectors/login.php:32
57
- #: redirection/redirectors/login.php:34
58
- msgid "Logged in URL"
59
- msgstr "Logged in URL"
60
-
61
- #: redirection/redirectors/login.php:42
62
- #: redirection/redirectors/login.php:44
63
- msgid "Logged out URL"
64
- msgstr "Logged out URL"
65
-
66
- #: redirection/redirectors/login.php:49
67
- msgid "An empty URL means the source URL is not redirected when the user is logged in/logged out."
68
- msgstr "An empty URL means the source URL is not redirected when the user is logged in/logged out."
69
-
70
- #: redirection/redirectors/lucky_dip.php:26
71
- msgid "Redirect to a random WordPress post"
72
- msgstr "הפניה לפוסט רנדומלי"
73
-
74
- #: redirection/redirectors/random_url.php:29
75
- msgid "Redirect to one of several URLs"
76
- msgstr "הפניה לאחד ממספר URLים"
77
-
78
- #: redirection/redirectors/random_url.php:35
79
- #: redirection/redirectors/url.php:30
80
- #: redirection/view/admin/add.php:15
81
- #: redirection/view/admin/log_item_details.php:11
82
- msgid "Target URL"
83
- msgstr "URL היעד"
84
-
85
- #: redirection/redirectors/referrer.php:33
86
- msgid "Redirect based on referrer"
87
- msgstr "Redirect based on referrer"
88
-
89
- #: redirection/redirectors/referrer.php:39
90
- #: redirection/view/admin/404_item_details.php:13
91
- #: redirection/view/admin/404_item_details.php:15
92
- #: redirection/view/admin/log_item_details.php:21
93
- #: redirection/view/admin/log_item_details.php:23
94
- msgid "Referrer"
95
- msgstr "מפנה"
96
-
97
- #: redirection/redirectors/referrer.php:43
98
- msgid "Referrer Regex"
99
- msgstr "Referrer Regex"
100
-
101
- #: redirection/redirectors/referrer.php:49
102
- #: redirection/redirectors/referrer.php:51
103
- msgid "URL from referrer"
104
- msgstr "URL from referrer"
105
-
106
- #: redirection/redirectors/referrer.php:59
107
- #: redirection/redirectors/referrer.php:61
108
- msgid "Not from referrer"
109
- msgstr "Not from referrer"
110
-
111
- #: redirection/redirectors/referrer.php:66
112
- msgid "An empty URL means the source URL is not redirected."
113
- msgstr "המשמעות של URL ריק היא ש-URL המקור לא מהווה הפניה."
114
-
115
- #: redirection/redirectors/url.php:24
116
- msgid "Simple redirection"
117
- msgstr "הפניה פשוטה"
118
-
119
- #: redirection/view/admin/404.php:5
120
- msgid "Redirection 404 Log"
121
- msgstr "Redirection 404 Log"
122
-
123
- #: redirection/view/admin/404.php:42
124
- msgid "You have no 404 logs!"
125
- msgstr "אין רישומי שגיאות 404."
126
-
127
- #: redirection/view/admin/404.php:54
128
- msgid "Delete All 404s"
129
- msgstr "מחיקת כל 404"
130
-
131
- #: redirection/view/admin/404.php:55
132
- msgid "This will delete all logged 404 errors. Please be sure this is what you want to do."
133
- msgstr "הפעולה תמחוק את כל רישומי שיגאות 404, האם אתה בטוח?"
134
-
135
- #: redirection/view/admin/404.php:57
136
- msgid "Are you sure?"
137
- msgstr "האם אתה בטוח?"
138
-
139
- #: redirection/view/admin/404_item.php:12
140
- msgid "Add redirection"
141
- msgstr "הוסף הפניה"
142
-
143
- #: redirection/view/admin/404_item.php:13
144
- #: redirection/view/admin/log_item.php:10
145
- #: redirection/view/admin/options.php:70
146
- msgid "Delete"
147
- msgstr "מחק"
148
-
149
- #: redirection/view/admin/404_item_details.php:3
150
- #: redirection/view/admin/log_item_details.php:3
151
- msgid "at"
152
- msgstr "ב"
153
-
154
- #: redirection/view/admin/404_item_details.php:7
155
- #: redirection/view/admin/add.php:11
156
- #: redirection/view/admin/item_details.php:6
157
- #: redirection/view/admin/log_item_details.php:7
158
- msgid "Source URL"
159
- msgstr "כתובת מקור"
160
-
161
- #: redirection/view/admin/404_item_details.php:21
162
- #: redirection/view/admin/log_item_details.php:29
163
- msgid "User Agent"
164
- msgstr "User Agent"
165
-
166
- #: redirection/view/admin/404_item_details.php:25
167
- #: redirection/view/admin/log_item_details.php:33
168
- msgid "IP"
169
- msgstr "IP"
170
-
171
- #: redirection/view/admin/add.php:6
172
- msgid "Add new redirection"
173
- msgstr "הוספת הפניה"
174
-
175
- #: redirection/view/admin/add.php:19
176
- msgid "Type"
177
- msgstr "סוג"
178
-
179
- #: redirection/view/admin/add.php:26
180
- msgid "Method"
181
- msgstr "שיטה"
182
-
183
- #: redirection/view/admin/add.php:33
184
- msgid "Pass-through"
185
- msgstr "Pass-through"
186
-
187
- #: redirection/view/admin/add.php:38
188
- #: redirection/view/admin/item_details.php:10
189
- msgid "Regex"
190
- msgstr "Regex"
191
-
192
- #: redirection/view/admin/add.php:43
193
- msgid "Add Redirection"
194
- msgstr "הוסף הפניה"
195
-
196
- #: redirection/view/admin/head.php:4
197
- msgid "Please wait..."
198
- msgstr "אנא המתן..."
199
-
200
- #: redirection/view/admin/item.php:14
201
- msgid "Reset"
202
- msgstr "אפֵּס"
203
-
204
- #: redirection/view/admin/item_details.php:18
205
- #: redirection/view/admin/item_details.php:23
206
- #: redirection/view/admin/item_details.php:28
207
- msgid "Last User"
208
- msgstr "משתמש אחרון"
209
-
210
- #: redirection/view/admin/item_details.php:34
211
- msgid "Open referrer"
212
- msgstr "הפניה פתוחה"
213
-
214
- #: redirection/view/admin/item_details.php:34
215
- msgid "Last Referrer"
216
- msgstr "הפני אחרונה"
217
-
218
- #: redirection/view/admin/item_details.php:40
219
- msgid "Cancel"
220
- msgstr "בטל"
221
-
222
- #: redirection/view/admin/log.php:2
223
- msgid "Redirection Log"
224
- msgstr "רישומי הפניות"
225
-
226
- #: redirection/view/admin/log.php:40
227
- msgid "You have no logs!"
228
- msgstr "אין רישומים."
229
-
230
- #: redirection/view/admin/log.php:51
231
- msgid "Delete All Logs"
232
- msgstr "מחק את כל "
233
-
234
- #: redirection/view/admin/log_item_details.php:15
235
- msgid "Redirected by"
236
- msgstr "הופנה על ידי"
237
-
238
- #: redirection/view/admin/log_item_details.php:16
239
- msgid "for"
240
- msgstr "for"
241
-
242
- #: redirection/view/admin/options.php:2
243
- msgid "Options"
244
- msgstr "הגדרות"
245
-
246
- #: redirection/view/admin/options.php:6
247
- msgid "Create 301 when post slug changes"
248
- msgstr "צור 301 כאשר משתנה ההפניה (slug) של הפוסט"
249
-
250
- #: redirection/view/admin/options.php:10
251
- msgid "Redirect index.php/index.html"
252
- msgstr "הפנה index.php/index.html"
253
-
254
- #: redirection/view/admin/options.php:14
255
- msgid "Root domain"
256
- msgstr "דומיין מקור"
257
-
258
- #: redirection/view/admin/options.php:17
259
- msgid "No"
260
- msgstr "לא"
261
-
262
- #: redirection/view/admin/options.php:18
263
- msgid "Strip www"
264
- msgstr "הסר www"
265
-
266
- #: redirection/view/admin/options.php:19
267
- msgid "Add www"
268
- msgstr "הוסף www"
269
-
270
- #: redirection/view/admin/options.php:24
271
- msgid "Auto-generate URL"
272
- msgstr "יצירה אוטומטית של URL"
273
-
274
- #: redirection/view/admin/options.php:34
275
- msgid "Globally redirect unknown 404 errors"
276
- msgstr "הפניה גלובאלית של שגיאות 404 ידועות"
277
-
278
- #: redirection/view/admin/options.php:51
279
- msgid "Log 404 errors"
280
- msgstr "רישום שגיאות 404"
281
-
282
- #: redirection/view/admin/options.php:55
283
- msgid "Check for updates"
284
- msgstr "בדוק עדכונים"
285
-
286
- #: redirection/view/admin/options.php:60
287
- msgid "Update"
288
- msgstr "עדכן"
289
-
290
- #: redirection/view/admin/pager.php:13
291
- msgid "Search"
292
- msgstr "חיפוש"
293
-
294
- #: redirection/view/admin/pager.php:16
295
- msgid "Per page"
296
- msgstr "פר עמוד"
297
-
298
- #: redirection/view/admin/pager.php:19
299
- msgid "go"
300
- msgstr "בצע"
301
-
302
- #: redirection/view/admin/redirections.php:2
303
- #, php-format
304
- msgid "%s Redirections"
305
- msgstr "% הפניות"
306
-
307
- #: redirection/view/admin/redirections.php:40
308
- msgid "You have no redirections."
309
- msgstr "אין הפניות."
310
-
311
- #: redirection/view/admin/version.php:5
312
- #, php-format
313
- msgid "%s ago"
314
- msgstr "לפני %"
315
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-hi_IN.mo DELETED
Binary file
locale/redirection-hi_IN.po DELETED
@@ -1,1024 +0,0 @@
1
- # Hindi (UTF-8) translation for WordPress Plugin Redirection 2.1.17
2
- #
3
- # Copyright (c) 2009
4
- # This file is distributed under the same license as the WordPress package.
5
- #
6
- # WordPress India Project
7
- # <http://outshinesolutions.com/wordpress/>
8
- #
9
- msgid ""
10
- msgstr ""
11
- "Project-Id-Version: Redirection 2.1.17\n"
12
- "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2009-06-30 05:59+0530\n"
14
- "PO-Revision-Date: 2009-06-30 07:02+0530\n"
15
- "Last-Translator: Ashish <ashish@outshinesolutions.com>\n"
16
- "Language-Team: WordPress India Project <http://outshinesolutions.com/wordpress/>\n"
17
- "MIME-Version: 1.0\n"
18
- "Content-Type: text/plain; charset=UTF-8\n"
19
- "Content-Transfer-Encoding: 8bit\n"
20
- "X-Poedit-Language: Hindi\n"
21
- "X-Poedit-Country: India\n"
22
- "X-Poedit-SourceCharset: utf-8\n"
23
- "X-Poedit-Basepath: ../\n"
24
- "X-Poedit-KeywordsList: __;_e\n"
25
- "X-Poedit-SearchPath-0: .\n"
26
-
27
- #: ajax.php:368
28
- msgid "Sorry, but your redirection was not created"
29
- msgstr "क्षमा करें, किंतु आपका redirection नहीं बनाया गया था"
30
-
31
- #: redirection.php:116
32
- msgid "Settings"
33
- msgstr "सेटिंग्स"
34
-
35
- #: redirection.php:123
36
- msgid "Redirection Help"
37
- msgstr "Redirection सहायता"
38
-
39
- #: redirection.php:124
40
- msgid "Redirection Documentation"
41
- msgstr "Redirection दस्तावेज़ीकरण"
42
-
43
- #: redirection.php:125
44
- msgid "Redirection Support Forum"
45
- msgstr "Redirection समर्थन फोरम"
46
-
47
- #: redirection.php:126
48
- msgid "Redirection Bug Tracker"
49
- msgstr "Redirection बग ट्रैकर"
50
-
51
- #: redirection.php:127
52
- msgid "Redirection FAQ"
53
- msgstr "Redirection अकसर किये गए सवाल"
54
-
55
- #: redirection.php:128
56
- msgid "Please read the documentation and FAQ, and check the bug tracker, before asking a question."
57
- msgstr "कृपया सवाल पूछने से पहले दस्तावेज़ीकरण और अकसर किये गए सवाल पढ़ने और बग tracker की जाँच कर लें."
58
-
59
- #: redirection.php:190
60
- msgid "Redirection"
61
- msgstr "Redirection"
62
-
63
- #: redirection.php:233
64
- msgid "Your module was successfully created"
65
- msgstr "आपका मॉड्यूल सफलतापूर्वक बनाया गया"
66
-
67
- #: redirection.php:237
68
- msgid "Your module was not created - did you provide a name?"
69
- msgstr "आपका मॉड्यूल नहीं बनाया जा सका - क्या आपने एक नाम प्रदान किया था ?"
70
-
71
- #: redirection.php:299
72
- msgid "Your options were updated"
73
- msgstr "आपके विकल्प नवीनीकृत हो चुके हैं"
74
-
75
- #: redirection.php:307
76
- msgid "Redirection data has been deleted and the plugin disabled"
77
- msgstr "Redirection डाटा हटा दिया गया है और प्लगइन निष्क्रिय कर दिया गया है"
78
-
79
- #: redirection.php:319
80
- msgid "No items were imported"
81
- msgstr "कोई आइटम आयात नहीं किया गया."
82
-
83
- #: redirection.php:337
84
- msgid "Your logs have been deleted"
85
- msgstr "आपका लॉग हटा दिया गया है"
86
-
87
- #: redirection.php:360
88
- msgid "Your group was added successfully"
89
- msgstr "आपका समूह सफलतापूर्वक जोड़ दिया गया"
90
-
91
- #: redirection.php:364
92
- msgid "Please specify a group name"
93
- msgstr "कृपया समूह का एक नाम निर्दिष्ट करें"
94
-
95
- #: fileio/csv.php:21
96
- #, php-format
97
- msgid "module_%d.csv"
98
- msgstr "module_%d.csv"
99
-
100
- #: fileio/xml.php:32
101
- #, php-format
102
- msgid "module_%d.xml"
103
- msgstr "module_%d.xml"
104
-
105
- #: fileio/xml.php:105
106
- #, php-format
107
- msgid "%s imported on %s at %s"
108
- msgstr "%s पर आयातित %s पर %s"
109
-
110
- #: fileio/xml.php:168
111
- msgid "XML importing is only available with PHP5 - you have PHP4."
112
- msgstr "XML आयात PHP5 के साथ ही उपलब्ध है - और आपके पास PHP4 है"
113
-
114
- #: matches/login.php:25
115
- msgid "URL and login status"
116
- msgstr "URL और प्रवेश स्थिति"
117
-
118
- #: matches/login.php:32
119
- msgid "The target URL will be chosen from one of the following URLs, depending if the user is logged in or out. Leaving a URL blank means that the user is not redirected."
120
- msgstr "इस लक्ष्य की यूआरएल निम्न यूआरएलों में से एक चुन ले, ये इस बात पे निर्भर करेगा की उसेर लोगिन है या लोगोंउट. यूआरएल (URL) रिक्त छोरने का मतलब यह है कि उपयोगकर्ता निर्देशित नहीं हो रहा है."
121
-
122
- #: matches/login.php:37
123
- #: matches/login.php:39
124
- msgid "Logged In"
125
- msgstr "पहले से लोगिन "
126
-
127
- #: matches/login.php:47
128
- #: matches/login.php:49
129
- msgid "Logged Out"
130
- msgstr "लोग्गेद आउट "
131
-
132
- #: matches/referrer.php:28
133
- msgid "URL and referrer"
134
- msgstr "URL और रेफेर्रेर "
135
-
136
- #: matches/referrer.php:40
137
- msgid "Referrer"
138
- msgstr "रेफेर्रेर "
139
-
140
- #: matches/referrer.php:43
141
- msgid "Regex"
142
- msgstr "रेजेक्स "
143
-
144
- #: matches/referrer.php:47
145
- #: matches/url.php:40
146
- #: matches/user_agent.php:56
147
- msgid "HTTP Code"
148
- msgstr "HTTP संहिता"
149
-
150
- #: matches/referrer.php:57
151
- msgid "The visitor will be redirected from the source URL if the referrer matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected."
152
- msgstr "अगर रेफेरेर मैच करता है तो आगंतुक को निर्देशित किया जाएगा. आप निर्दिष्ट कर सकते है <em>मेल खाने वाले </ em> अगर आगुन्तक को लक्ष्य उरल पर भेजना है अगर वोह मेल खाते है तो या आप निर्दिष्ट कर सकते है <em>मेल नहीं खाने वाले </ em> आंगुतक को लक्ष्य उरल पे भेजने के लिए अगर्र वोह मेल नहीं खाते है तोः URL को रिक्त छोरने का मतलब होगा की आगुन्तक कहीं निर्देशित नहीं होगा "
153
-
154
- #: matches/referrer.php:63
155
- #: matches/referrer.php:65
156
- #: matches/user_agent.php:74
157
- #: matches/user_agent.php:76
158
- msgid "Matched"
159
- msgstr "मेल खाने वाले"
160
-
161
- #: matches/referrer.php:73
162
- #: matches/referrer.php:75
163
- #: matches/user_agent.php:84
164
- #: matches/user_agent.php:86
165
- msgid "Not matched"
166
- msgstr "मेल नहीं खाने वाले"
167
-
168
- #: matches/url.php:25
169
- msgid "URL only"
170
- msgstr "URL केवल"
171
-
172
- #: matches/url.php:32
173
- msgid "Target URL"
174
- msgstr "लक्ष्य URL"
175
-
176
- #: matches/user_agent.php:27
177
- msgid "URL and user agent"
178
- msgstr "URL और उसेर एजेंट "
179
-
180
- #: matches/user_agent.php:33
181
- msgid "FeedBurner"
182
- msgstr "FeedBurner"
183
-
184
- #: matches/user_agent.php:34
185
- msgid "Internet Explorer"
186
- msgstr "Internet Explorer"
187
-
188
- #: matches/user_agent.php:35
189
- msgid "FireFox"
190
- msgstr "FireFox"
191
-
192
- #: matches/user_agent.php:36
193
- msgid "Opera"
194
- msgstr "Opera"
195
-
196
- #: matches/user_agent.php:37
197
- msgid "Safari"
198
- msgstr "Safari"
199
-
200
- #: matches/user_agent.php:38
201
- msgid "iPhone"
202
- msgstr "iPhone"
203
-
204
- #: matches/user_agent.php:39
205
- msgid "Nintendo Wii"
206
- msgstr "Nintendo Wii"
207
-
208
- #: matches/user_agent.php:44
209
- msgid "User Agent"
210
- msgstr "उसेर एजेंट "
211
-
212
- #: matches/user_agent.php:67
213
- msgid "The visitor will be redirected from the source URL if the user agent matches. You can specify a <em>matched</em> target URL as the address to send visitors if they do match, and <em>not matched</em> if they don't match. Leaving a URL blank means that the visitor is not redirected. <strong>All matches are performed as regular expressions</strong>.\n"
214
- msgstr "अगर उज़र एजेंट मैच करता है तो आगंतुक को निर्देशित किया जाएगा. आप निर्दिष्ट कर सकते है <em>मेल खाने वाले </ em> अगर आगुन्तक को लक्ष्य उरल पर भेजना है अगर वोह मेल खाते है तो या आप निर्दिष्ट कर सकते है <em>मेल नहीं खाने वाले </ em> आंगुतक को लक्ष्य उरल पे भेजने के लिए अगर्र वोह मेल नहीं खाते है तोः URL को रिक्त छोरने का मतलब होगा की आगुन्तक कहीं निर्देशित नहीं होगा. <strong>सभी मैचों नियमित अभिव्यक्ति के रूप में कार्य करेंगे </strong>.\n"
215
-
216
- #: models/database.php:110
217
- #: models/module.php:168
218
- msgid "WordPress"
219
- msgstr "WordPress"
220
-
221
- #: models/database.php:111
222
- #: models/module.php:167
223
- msgid "Apache"
224
- msgstr "Apache"
225
-
226
- #: models/database.php:112
227
- #: models/module.php:169
228
- msgid "404 Errors"
229
- msgstr "404 त्रुटियाँ"
230
-
231
- #: models/database.php:118
232
- msgid "Redirections"
233
- msgstr "redirections (रिडाऐरेकसन )"
234
-
235
- #: models/database.php:119
236
- msgid "Modified posts"
237
- msgstr "संशोधित पोस्ट"
238
-
239
- #: models/module.php:192
240
- msgid "Strip WWW"
241
- msgstr "WWW हटाये "
242
-
243
- #: models/module.php:192
244
- msgid "Force WWW"
245
- msgstr "WWW लगाये"
246
-
247
- #: models/module.php:198
248
- msgid "Strip index.php"
249
- msgstr "index.php हटाये "
250
-
251
- #: models/pager.php:404
252
- msgid "Previous"
253
- msgstr "पिछला"
254
-
255
- #: models/pager.php:405
256
- msgid "Next"
257
- msgstr "अगला"
258
-
259
- #: models/pager.php:463
260
- #, php-format
261
- msgid "%d per-page"
262
- msgstr "%d प्रतेएक पृष्ट पे "
263
-
264
- #: models/pager.php:472
265
- #, php-format
266
- msgid "Displaying %s&#8211;%s of %s"
267
- msgstr "%s&#8211;%s में %s दिखा रहा है "
268
-
269
- #: models/redirect.php:408
270
- msgid "Redirect to URL"
271
- msgstr "URL के लिए र्निर्देशन"
272
-
273
- #: models/redirect.php:409
274
- msgid "Redirect to random post"
275
- msgstr "रन्दोम पोस्ट करने के लिए र्निर्देशन"
276
-
277
- #: models/redirect.php:410
278
- msgid "Pass-through"
279
- msgstr "पास के माध्यम से "
280
-
281
- #: models/redirect.php:411
282
- msgid "Error (404)"
283
- msgstr "त्रुटिー (404)"
284
-
285
- #: models/redirect.php:412
286
- msgid "Do nothing"
287
- msgstr "कुछ नहीं करें "
288
-
289
- #: modules/404.php:37
290
- msgid "Log 404s"
291
- msgstr "404 लोगस "
292
-
293
- #: modules/404.php:46
294
- #: modules/wordpress.php:228
295
- msgid "<strong>Disabled: You must enable <a href=\"options-permalink.php\">permalinks</a> before using this</strong>"
296
- msgstr "<strong>\tनिष्क्रिय: आपको पहले <a href=\"options-permalink.php\">पर्मालिंक्स </a> को सक्षम करना होगा</strong>"
297
-
298
- #: modules/404.php:57
299
- #: modules/wordpress.php:252
300
- msgid "<small>No options have been set</small>"
301
- msgstr "<small>कोई विकल्प सेट नहीं किया गया है</small>"
302
-
303
- #: modules/apache.php:65
304
- msgid "Location"
305
- msgstr "स्थान"
306
-
307
- #: modules/apache.php:70
308
- #, php-format
309
- msgid "WordPress is installed in: <code>%s</code>"
310
- msgstr "WordPress स्थापित है: <code>%s</code>"
311
-
312
- #: modules/apache.php:75
313
- #: modules/wordpress.php:189
314
- msgid "Canonical"
315
- msgstr "धर्मवैधानिक (canonical)"
316
-
317
- #: modules/apache.php:78
318
- #: modules/apache.php:84
319
- #: modules/wordpress.php:192
320
- #: modules/wordpress.php:197
321
- msgid "Leave as is"
322
- msgstr "ऐसे ही छोर दें "
323
-
324
- #: modules/apache.php:78
325
- #: modules/wordpress.php:192
326
- #, php-format
327
- msgid "Strip WWW (%s)"
328
- msgstr "WWW हटाये (%s)"
329
-
330
- #: modules/apache.php:78
331
- #: modules/wordpress.php:192
332
- #, php-format
333
- msgid "Force WWW (www.%s)"
334
- msgstr "WWW लगाये (www.%s)"
335
-
336
- #: modules/apache.php:82
337
- #: modules/wordpress.php:195
338
- msgid "Strip Index"
339
- msgstr "Index हटाये "
340
-
341
- #: modules/apache.php:84
342
- msgid "Strip index files (html,php)"
343
- msgstr "index हटाये (html,php)"
344
-
345
- #: modules/apache.php:89
346
- msgid "Memory Limit"
347
- msgstr "स्मृति सीमा"
348
-
349
- #: modules/apache.php:92
350
- #: modules/apache.php:97
351
- #: modules/wordpress.php:205
352
- #: modules/wordpress.php:210
353
- msgid "Server default"
354
- msgstr "सर्वर डेफौल्ट"
355
-
356
- #: modules/apache.php:95
357
- #: modules/wordpress.php:208
358
- msgid "Error Level"
359
- msgstr "त्रुटि स्तर"
360
-
361
- #: modules/apache.php:97
362
- msgid "No errors"
363
- msgstr "त्रुटियों नहीं "
364
-
365
- #: modules/apache.php:97
366
- msgid "Show errors"
367
- msgstr "त्रुटियों को दिखाएं "
368
-
369
- #: modules/apache.php:102
370
- msgid "Ban IPs"
371
- msgstr "IP प्रतिबंध"
372
-
373
- #: modules/apache.php:108
374
- msgid "Allow IPs"
375
- msgstr "IP प्रतिबंध हटाये "
376
-
377
- #: modules/apache.php:114
378
- msgid "Raw .htaccess"
379
- msgstr "कच्चा .htaccess"
380
-
381
- #: modules/apache.php:120
382
- msgid "Site URL"
383
- msgstr "साइट URL "
384
-
385
- #: modules/apache.php:123
386
- msgid "Advanced: For management of external sites"
387
- msgstr "उन्नत: बाहरी साइटों के प्रबंधन के लिए"
388
-
389
- #: modules/apache.php:138
390
- msgid "<strong>Location is invalid - check that path exists</strong>"
391
- msgstr "<strong>स्थान अमान्य है - जाँच लें कि रास्ते मौजूद है</strong>"
392
-
393
- #: modules/apache.php:144
394
- msgid "<strong>Could not write to configured <code>.htaccess</code> file - check file permissions</strong>"
395
- msgstr "<strong>\tकॉन्फ़िगर करने के लिए <code>. Htaccess </ code> फाइल में नहीं लिख सकता है - फाइल अनुमतियाँ जाँच लें </strong>"
396
-
397
- #: modules/apache.php:151
398
- msgid "<strong>Disabled: enter the location of an <code>.htaccess</code> file for this to be valid</strong>"
399
- msgstr "<strong>\tनिष्क्रिय: <code>. Htaccess </code> फाइल का स्थान दर्ज करें, मान्य होने के लिए </strong>"
400
-
401
- #: modules/apache.php:156
402
- msgid "strip WWW"
403
- msgstr "WWW हटाये"
404
-
405
- #: modules/apache.php:156
406
- msgid "force WWW"
407
- msgstr "WWW लगायें "
408
-
409
- #: modules/apache.php:159
410
- #: modules/wordpress.php:236
411
- msgid "strip index"
412
- msgstr "index हटाये "
413
-
414
- #: modules/apache.php:162
415
- #, php-format
416
- msgid "memory limit at %dMB"
417
- msgstr "%dMB स्मृति सीमा पर"
418
-
419
- #: modules/apache.php:165
420
- #: modules/wordpress.php:247
421
- msgid "no errors"
422
- msgstr "त्रुटियों नहीं "
423
-
424
- #: modules/apache.php:165
425
- #: modules/wordpress.php:247
426
- msgid "show errors"
427
- msgstr "त्रुटियों को दिखाएं "
428
-
429
- #: modules/apache.php:168
430
- msgid "IPs are banned"
431
- msgstr "IP प्रतिबंधित हैं "
432
-
433
- #: modules/apache.php:171
434
- msgid "IPs are allowed"
435
- msgstr "IP प्रतिबंधित नहीं हैं "
436
-
437
- #: modules/apache.php:179
438
- #, php-format
439
- msgid " for external site: <code>%s</code>"
440
- msgstr "बाहरी साइट के लिए: <code>%s</code>"
441
-
442
- #: modules/wordpress.php:197
443
- msgid "Strip index files (html,php,asp)"
444
- msgstr "index फाइल हटायें (html,php,asp)"
445
-
446
- #: modules/wordpress.php:202
447
- msgid "Time Limit"
448
- msgstr "समय सीमा"
449
-
450
- #: modules/wordpress.php:205
451
- msgid "30 seconds"
452
- msgstr "30 सेकंड"
453
-
454
- #: modules/wordpress.php:205
455
- msgid "1 minute"
456
- msgstr "1मिनट"
457
-
458
- #: modules/wordpress.php:205
459
- msgid "2 minutes"
460
- msgstr "2मिनट"
461
-
462
- #: modules/wordpress.php:205
463
- msgid "5 minutes"
464
- msgstr "5मिनट"
465
-
466
- #: modules/wordpress.php:205
467
- msgid "As long as possible"
468
- msgstr "यथासंभव समय"
469
-
470
- #: modules/wordpress.php:241
471
- msgid "time limit set as long as possible"
472
- msgstr "समय सीमा यथासंभव समय तक निर्धारित"
473
-
474
- #: modules/wordpress.php:243
475
- #, php-format
476
- msgid "time limit at %ss"
477
- msgstr "%ss समय सीमा पर "
478
-
479
- #: view/admin/add.php:3
480
- msgid "Add new redirection"
481
- msgstr "नई redirection जोड़ें"
482
-
483
- #: view/admin/add.php:6
484
- msgid "Your redirection has been added."
485
- msgstr "आपका redirection जोड़ दिया गया है."
486
-
487
- #: view/admin/add.php:12
488
- msgid "Source URL"
489
- msgstr "स्रोत URL"
490
-
491
- #: view/admin/add.php:16
492
- msgid "Match"
493
- msgstr "मेल"
494
-
495
- #: view/admin/add.php:22
496
- msgid "Action"
497
- msgstr "कार्य"
498
-
499
- #: view/admin/add.php:27
500
- msgid "Regular expression"
501
- msgstr "नियमित अभिव्यक्ति"
502
-
503
- #: view/admin/add.php:36
504
- msgid "Group"
505
- msgstr "समूह"
506
-
507
- #: view/admin/add.php:43
508
- msgid "Add Redirection"
509
- msgstr "redirection जोड़ें"
510
-
511
- #: view/admin/group_edit.php:6
512
- #: view/admin/group_list.php:36
513
- #: view/admin/group_list.php:99
514
- #: view/admin/module_edit.php:18
515
- #: view/admin/module_list.php:41
516
- msgid "Name"
517
- msgstr "नाम"
518
-
519
- #: view/admin/group_edit.php:10
520
- msgid "Tracked"
521
- msgstr "ट्रैक"
522
-
523
- #: view/admin/group_edit.php:11
524
- msgid "Whether to track 'hits' to items"
525
- msgstr "हिट ट्रैक 'के लिए' आइटम को"
526
-
527
- #: view/admin/group_edit.php:14
528
- msgid "Enabled"
529
- msgstr "सक्रिय"
530
-
531
- #: view/admin/group_edit.php:15
532
- msgid "Disabling a group will disable all items contained within it"
533
- msgstr "एक समूह को अक्षम करने पर इसके अंदर सभी आइटम को निष्क्रिय कर देगा"
534
-
535
- #: view/admin/group_edit.php:20
536
- #: view/admin/item_edit.php:27
537
- #: view/admin/module_edit.php:27
538
- msgid "Save"
539
- msgstr "सुरक्षित करें "
540
-
541
- #: view/admin/group_edit.php:21
542
- #: view/admin/item_edit.php:28
543
- #: view/admin/module_edit.php:28
544
- msgid "Cancel"
545
- msgstr "रद्द करें"
546
-
547
- #: view/admin/group_item.php:4
548
- msgid "edit group"
549
- msgstr "समूह संशोदन "
550
-
551
- #: view/admin/group_item.php:20
552
- #: view/admin/item.php:27
553
- msgid "disabled"
554
- msgstr "निष्क्रिय "
555
-
556
- #: view/admin/group_list.php:6
557
- msgid "Groups for module"
558
- msgstr "मॉड्यूल के लिए समूह "
559
-
560
- #: view/admin/group_list.php:15
561
- #: view/admin/log.php:38
562
- msgid "Module"
563
- msgstr "मॉड्यूल"
564
-
565
- #: view/admin/group_list.php:20
566
- #: view/admin/item_list.php:21
567
- #: view/admin/log.php:16
568
- #: view/admin/log.php:23
569
- msgid "Search"
570
- msgstr "खोज"
571
-
572
- #: view/admin/group_list.php:25
573
- msgid "go"
574
- msgstr "जाओ "
575
-
576
- #: view/admin/group_list.php:35
577
- #: view/admin/item_list.php:34
578
- #: view/admin/module_list.php:16
579
- msgid "Hits"
580
- msgstr "हिट्स "
581
-
582
- #: view/admin/group_list.php:58
583
- #: view/admin/item_list.php:59
584
- msgid "Select All"
585
- msgstr "सभी का चयन करें"
586
-
587
- #: view/admin/group_list.php:59
588
- #: view/admin/item_list.php:60
589
- msgid "Toggle"
590
- msgstr "टॉगल"
591
-
592
- #: view/admin/group_list.php:60
593
- #: view/admin/item_list.php:61
594
- msgid "Reset Hits"
595
- msgstr "रिसेट हिट्स "
596
-
597
- #: view/admin/group_list.php:61
598
- #: view/admin/item_list.php:62
599
- #: view/admin/log.php:30
600
- #: view/admin/options.php:110
601
- msgid "Delete"
602
- msgstr "हटाये "
603
-
604
- #: view/admin/group_list.php:63
605
- #: view/admin/item_list.php:64
606
- msgid "Move To"
607
- msgstr "स्थानांतरित करें "
608
-
609
- #: view/admin/group_list.php:68
610
- #: view/admin/item_list.php:26
611
- #: view/admin/item_list.php:69
612
- msgid "Go"
613
- msgstr "जाए "
614
-
615
- #: view/admin/group_list.php:74
616
- #: view/admin/item_list.php:75
617
- msgid "re-order"
618
- msgstr "पुनःक्रम"
619
-
620
- #: view/admin/group_list.php:75
621
- #: view/admin/item_list.php:76
622
- msgid "save order"
623
- msgstr "क्रम सुरक्षित करें "
624
-
625
- #: view/admin/group_list.php:88
626
- msgid "You have no groups in this module."
627
- msgstr "आपके पास इस मॉड्यूल में कोई समूह नहीं है."
628
-
629
- #: view/admin/group_list.php:93
630
- msgid "Add Group"
631
- msgstr "समूह जोड़ें"
632
-
633
- #: view/admin/group_list.php:104
634
- msgid "Add"
635
- msgstr "जोड़ें"
636
-
637
- #: view/admin/group_list.php:116
638
- #: view/admin/head.php:7
639
- #: view/admin/item_list.php:104
640
- #: view/admin/log.php:113
641
- msgid "No items have been selected"
642
- msgstr "कोई आइटम नहीं चुना गया है"
643
-
644
- #: view/admin/group_list.php:117
645
- #: view/admin/head.php:6
646
- #: view/admin/item_list.php:105
647
- #: view/admin/log.php:114
648
- msgid "Are you sure?"
649
- msgstr "क्या आपको यकीन है?"
650
-
651
- #: view/admin/head.php:3
652
- msgid "Please wait..."
653
- msgstr "कृपया प्रतीक्षा करें ..."
654
-
655
- #: view/admin/item_edit.php:3
656
- #, php-format
657
- msgid "%s by matching %s"
658
- msgstr "%s मेल से %s"
659
-
660
- #: view/admin/item_edit.php:7
661
- msgid "Title"
662
- msgstr "शीर्षक"
663
-
664
- #: view/admin/item_edit.php:10
665
- msgid "optional"
666
- msgstr "वैकल्पिक"
667
-
668
- #: view/admin/item_list.php:6
669
- msgid "Redirections for group"
670
- msgstr "समूह के लिए Redirections"
671
-
672
- #: view/admin/item_list.php:33
673
- msgid "Last Access"
674
- msgstr "पिछली बार का प्रवेश "
675
-
676
- #: view/admin/item_list.php:35
677
- #: view/admin/module_list.php:45
678
- msgid "Type"
679
- msgstr "प्रकार"
680
-
681
- #: view/admin/item_list.php:36
682
- msgid "URL"
683
- msgstr "URL"
684
-
685
- #: view/admin/item_list.php:36
686
- msgid "Position"
687
- msgstr "स्थिति"
688
-
689
- #: view/admin/item_list.php:80
690
- msgid "You have no redirections."
691
- msgstr "आपके पास कोई redirections नहीं है "
692
-
693
- #: view/admin/log.php:6
694
- msgid "Redirection Log"
695
- msgstr "Redirection लोंग"
696
-
697
- #: view/admin/log.php:29
698
- msgid "Bulk Actions"
699
- msgstr "थोक क्रिया"
700
-
701
- #: view/admin/log.php:33
702
- msgid "Apply"
703
- msgstr "लागू करना"
704
-
705
- #: view/admin/log.php:49
706
- msgid "Filter"
707
- msgstr "फ़िल्टर"
708
-
709
- #: view/admin/log.php:67
710
- msgid "Date"
711
- msgstr "तिथि"
712
-
713
- #: view/admin/log.php:70
714
- msgid "IP"
715
- msgstr "IP"
716
-
717
- #: view/admin/log.php:85
718
- msgid "There are no logs to display!"
719
- msgstr "यहाँ प्रदर्शित करने के लिए लॉग नहीं हैं!"
720
-
721
- #: view/admin/log.php:94
722
- msgid "Process Current Logs"
723
- msgstr "प्रक्रिया वर्तमान लॉग"
724
-
725
- #: view/admin/log.php:95
726
- msgid "These actions will affect all currently available logs (i.e. your search phrase will restrict the log items)."
727
- msgstr "ये कार्य सभी वर्तमान में उपलब्ध लॉगस को प्रभावित करेगा ( आपके खोज वाक्यांश इनलोगस आइटम को प्रतिबंधित करेगा )."
728
-
729
- #: view/admin/log.php:100
730
- msgid "Delete Logs"
731
- msgstr "लोगस हटाये "
732
-
733
- #: view/admin/log.php:101
734
- msgid "Export to CSV"
735
- msgstr "CSV में निर्यात करें "
736
-
737
- #: view/admin/log_item_details.php:9
738
- msgid "Redirect to"
739
- msgstr "को निर्देशित "
740
-
741
- #: view/admin/log_item_details.php:15
742
- msgid "Redirected by"
743
- msgstr "द्वारा निर्देशित "
744
-
745
- #: view/admin/log_item_details.php:16
746
- msgid "for"
747
- msgstr "के लिए"
748
-
749
- #: view/admin/module_item.php:24
750
- msgid "View as"
751
- msgstr "के रूप में देखें"
752
-
753
- #: view/admin/module_item.php:26
754
- msgid "CSV"
755
- msgstr "CSV"
756
-
757
- #: view/admin/module_item.php:27
758
- msgid "XML"
759
- msgstr "XML"
760
-
761
- #: view/admin/module_item.php:29
762
- msgid "RSS"
763
- msgstr "RSS"
764
-
765
- #: view/admin/module_item.php:42
766
- msgid "edit"
767
- msgstr "संपादन"
768
-
769
- #: view/admin/module_item.php:45
770
- msgid "delete"
771
- msgstr "मिटाना"
772
-
773
- #: view/admin/module_item.php:48
774
- msgid "reset"
775
- msgstr "रीसेट"
776
-
777
- #: view/admin/module_list.php:6
778
- #: view/admin/submenu.php:6
779
- msgid "Modules"
780
- msgstr "मॉड्यूल"
781
-
782
- #: view/admin/module_list.php:13
783
- msgid "Details"
784
- msgstr "विवरण"
785
-
786
- #: view/admin/module_list.php:14
787
- #: view/admin/submenu.php:5
788
- msgid "Groups"
789
- msgstr "समूह"
790
-
791
- #: view/admin/module_list.php:15
792
- msgid "Items"
793
- msgstr "आइटम"
794
-
795
- #: view/admin/module_list.php:17
796
- msgid "Operations"
797
- msgstr "संचालन"
798
-
799
- #: view/admin/module_list.php:26
800
- msgid "Note: Hits are dependant on log entries"
801
- msgstr "नोट: हिट्स लॉग प्रविष्टियों पर निर्भर करते हैं"
802
-
803
- #: view/admin/module_list.php:28
804
- msgid "You have no modules defined yet"
805
- msgstr "अभी तक कोई मॉड्यूल परिभाषित नहीं किया है "
806
-
807
- #: view/admin/module_list.php:33
808
- msgid "Add Module"
809
- msgstr "मॉड्यूल जोड़ें"
810
-
811
- #: view/admin/module_list.php:34
812
- msgid "A module is a controlling element that determines how redirections are handled. Elements in a WordPress module are handled by WordPress, elements in an Apache module are handled by <code>.htaccess</code>, and elements in a 404 module affect how 404 errors are logged."
813
- msgstr "एक मॉड्यूल एक नियंत्रित तत्व है जो ये निर्धारित करता है कि कैसे redirections संभाला जाए. एक WordPress मॉड्यूल के तत्वों को WordPress, एक Apache मॉड्यूल के तत्वों को <code>. Htaccess </code>द्वारा संभाला जाता है, और ४०४ त्रुटियों कैसे लॉग हो इनको ४०४ मॉड्यूल के तत्वों द्वारा प्रभावित किया जाता है."
814
-
815
- #: view/admin/module_list.php:54
816
- msgid "Create"
817
- msgstr "बनाएँ"
818
-
819
- #: view/admin/options.php:6
820
- #: view/admin/submenu.php:8
821
- msgid "Options"
822
- msgstr "विकल्प"
823
-
824
- #: view/admin/options.php:15
825
- msgid "Auto-generate URL"
826
- msgstr "URL अपने आप उत्पन्न करें "
827
-
828
- #: view/admin/options.php:19
829
- msgid "This will be used to auto-generate a URL if no URL is given. You can use the special tags $dec$ or $hex$ to have a unique ID inserted (either decimal or hex)"
830
- msgstr "यह स्वत: यूआरएल उत्पन्न करने के लिए उपयोग किया जाएगा, अगर कोई URL नहीं दिया जाता है. आप $dec$ या hex$ जैसे विशेष टैग का उपयोग कर सकते हैं (या तो दशमलव या हेक्स)"
831
-
832
- #: view/admin/options.php:24
833
- msgid "IP Lookup Service"
834
- msgstr "IP लुकअप सेवा"
835
-
836
- #: view/admin/options.php:30
837
- msgid "Plugin Support"
838
- msgstr "Plugin सहायता"
839
-
840
- #: view/admin/options.php:33
841
- msgid "I'm a nice person and I have helped support the author of this plugin"
842
- msgstr "मैं एक अच्छा इंसान हूँ और मैं इस प्लगइन के लेखक का समर्थन करने में मदद की है"
843
-
844
- #: view/admin/options.php:37
845
- msgid "Expire Logs"
846
- msgstr "निश्वासन लॉग"
847
-
848
- #: view/admin/options.php:40
849
- msgid "days (enter 0 for no expiry)"
850
- msgstr "दिन (कोई समाप्ति नहीं, के लिए 0 दर्ज करें)"
851
-
852
- #: view/admin/options.php:44
853
- msgid "RSS Token"
854
- msgstr "RSS टोकन"
855
-
856
- #: view/admin/options.php:47
857
- msgid "A unique token allowing feed readers access to Redirection RSS (leave blank to auto-generate)"
858
- msgstr "एक अनूठा टोकन पाठकों के Redirection RSS फ़ीड के उपयोग अनुमति के लिए (स्वतः उत्पन्न करने के लिए रिक्त छोरों)"
859
-
860
- #: view/admin/options.php:52
861
- msgid "URL Monitoring"
862
- msgstr "URL निगरानी"
863
-
864
- #: view/admin/options.php:53
865
- msgid "You can have Redirection detect changes in URLs and have an automatic redirection created in a specific group."
866
- msgstr "आप Redirection को यूआरएल में परिवर्तन का पता लगाने और एक स्वचालित redirection करके एक विशिष्ट समूह में भेज सकता है "
867
-
868
- #: view/admin/options.php:57
869
- msgid "Post &amp; Page URLs"
870
- msgstr "पोस्ट और पेज URL"
871
-
872
- #: view/admin/options.php:60
873
- #: view/admin/options.php:72
874
- msgid "Don't monitor"
875
- msgstr "मॉनिटर नहीं करें "
876
-
877
- #: view/admin/options.php:64
878
- msgid "Monitor new posts"
879
- msgstr "मॉनिटर नई पोस्ट"
880
-
881
- #: view/admin/options.php:69
882
- msgid "Category URLs"
883
- msgstr "श्रेणी ー URL"
884
-
885
- #: view/admin/options.php:79
886
- msgid "Update"
887
- msgstr "अपडेट "
888
-
889
- #: view/admin/options.php:85
890
- msgid "Import"
891
- msgstr "आयात"
892
-
893
- #: view/admin/options.php:87
894
- msgid "Here you can import redirections from an existing .htaccess file, a CSV file, or a Redirection XML."
895
- msgstr "यहाँ आप एक मौजूदा. Htaccess फ़ाइल, एक CSV फ़ाइल, या एक Redirection XMLफ़ाइल से redirections आयात कर सकते हैं."
896
-
897
- #: view/admin/options.php:94
898
- msgid "Import into"
899
- msgstr "आयत करें "
900
-
901
- #: view/admin/options.php:97
902
- msgid "Upload"
903
- msgstr "अपलोड"
904
-
905
- #: view/admin/options.php:100
906
- msgid "Note that the group is ignored when uploading an XML file."
907
- msgstr "ध्यान दें कि समूह को नजरअंदाज कर दिया जाएगा, जब एक XML फ़ाइल अपलोड अपलोड होगा ."
908
-
909
- #: view/admin/options.php:104
910
- msgid "Delete Redirection"
911
- msgstr "Redirection हटाये या नस्ट करें "
912
-
913
- #: view/admin/options.php:105
914
- msgid "Selecting this option will delete all redirections, all logs, and any options associated with the Redirection plugin. Make sure this is what you want to do."
915
- msgstr "यह विकल्प सभी redirections हटा देगा , सभी लॉग हटा देगा, और कोई भी विकल्प जो Redirection प्लगइन के साथ जुड़े उसे भी हटा देगा . सुनिश्चित करें कि आप यह ही करना चाहते है."
916
-
917
- #: view/admin/submenu.php:4
918
- msgid "Redirects"
919
- msgstr "रेदिरेक्ट्स "
920
-
921
- #: view/admin/submenu.php:7
922
- msgid "Log"
923
- msgstr "लोगस "
924
-
925
- #: view/admin/submenu.php:9
926
- msgid "Support"
927
- msgstr "सहायता"
928
-
929
- #: view/admin/support.php:5
930
- msgid "Redirection Support"
931
- msgstr "Redirection सहायता"
932
-
933
- #: view/admin/support.php:9
934
- msgid "Redirection is free to use - life is wonderful and lovely! However, it has required a great deal of time and effort to develop and if it has been useful you can help support this development by <strong>making a small donation</strong>."
935
- msgstr "Redirection उपयोग करने के लिए मुफ्त है - जीवन अद्भुत है और प्यारी! हालांकि, इस प्लगइन के विकास में काफी समय और प्रयाश लगा है, यदि यह आपके लिए उपयोगी साबित हुआ है तो आप इसको और विकसित करने के लिए <strong>एक छोटा सा दान दे</strong> कर मदद कर सकते है "
936
-
937
- #: view/admin/support.php:10
938
- msgid "This will act as an incentive for me to carry on developing, providing countless hours of support, and including new features and suggestions. You get some useful software and I get to carry on making it. Everybody wins."
939
- msgstr "यह मेरे लिए एक प्रोत्साहन के रूप में काम करेगा और मै इसका विकास जारी रख सकूँगा और आपकी सहायता एवं नए सुविधाए और सुझाब शामिल सकूँगा. आपको एक उपयोगी सॉफ्टवेर मिलेगा और मैं इसको बनाने का काम जारी रख सकूँगा. हर कोई जीतेगा "
940
-
941
- #: view/admin/support.php:13
942
- msgid "If you are using this plugin in a commercial setup, or feel that it's been particularly useful, then you may want to consider a <strong>commercial donation</strong>."
943
- msgstr "यदि आप एक व्यावसायिक सेटअप में इस प्लगइन का उपयोग कर रहे हैं या कि यह विशेष रूप से उपयोगी है लग रहा है, तो आप एक <strong> वाणिज्यिक दान पर विचार करना चाहे </strong>"
944
-
945
- #: view/admin/support.php:36
946
- msgid "Individual<br/>Donation"
947
- msgstr "व्यक्तिगत <br/> दान"
948
-
949
- #: view/admin/support.php:56
950
- msgid "Commercial<br/>Donation"
951
- msgstr "वाणिज्यिक <br/> दान"
952
-
953
- #: view/admin/support.php:60
954
- msgid "Translations"
955
- msgstr "अनुवाद"
956
-
957
- #: view/admin/support.php:62
958
- msgid "If you're multi-lingual then you may want to consider donating a translation:"
959
- msgstr "यदि आप बहुभाषी हैं , तो आप एक अनुवाद दान करने पर विचार करना चाहे ."
960
-
961
- #: view/admin/support.php:70
962
- msgid "All translators will have a link to their website placed on the plugin homepage at <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> and <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a>, in addition to being an individual supporter."
963
- msgstr "सभी अनुवादकों, एक व्यक्ति के समर्थक होने के अलावा, उनका लिंक अपनी वेबसाइट <a href=\"http://urbangiraffe.com/plugins/redirection/\">UrbanGiraffe</a> और <a href=\"http://wordpress.org/extend/plugins/redirection/\">WordPress.org</a> के प्लगइन मुखपृष्ठ पर रखा जाएगा "
964
-
965
- #: view/admin/support.php:71
966
- msgid "Full details of producing a translation can be found in this <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\">guide to translating WordPress plugins</a>."
967
- msgstr "अनुवाद उत्पादन का पूर्ण विवरण इस में पाया जा सकता है <a href=\"http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/\"> वर्डप्रेस प्लुगिंस का अनुवाद करने के लिए गाइड </a>."
968
-
969
- #~ msgid ""
970
- #~ "<p style=\"color: red\">You are not allowed access to this resource</p>"
971
- #~ msgstr ""
972
- #~ "<p style=\"color: red\">इस संसाधन का उपयोग करने के लिए आप को अनुमति नहीं है </p>"
973
- #~ msgid "<p style=\"color: red\">That function is not defined</p>"
974
- #~ msgstr "<p style=\"color: red\">यह कार्य परिभाषित नहीं है</p>"
975
- #~ msgid "Failed to retrieve group data"
976
- #~ msgstr "समूह डेटा प्राप्त करने में असफल"
977
- #~ msgid "Failed to retrieve module data"
978
- #~ msgstr "मॉड्यूल डेटा प्राप्त करने में असफल"
979
- #~ msgid ""
980
- #~ "Redirection has required a great deal of time and effort to develop. If "
981
- #~ "it's been useful to you then you can support this development by "
982
- #~ "<strong>making a small donation of $12</strong>. This will act as an "
983
- #~ "incentive for me to carry on developing it, providing countless hours of "
984
- #~ "support, and including any enhancements that are suggested."
985
- #~ msgstr ""
986
- #~ "Redirection को विकसित करने में काफी समय और प्रयास लगता है. अगर ये आपके लिए "
987
- #~ "मददगार साबित हुआ है तो आप इसके विकास में <strong>$१२ का एक छोटा सा दान</"
988
- #~ "strong> कर सकते है. इससे Redirection के विकास में मदद मिलेगी और यह मेरे लिए एक "
989
- #~ "प्रोत्साहन के रूप में कार्य करेगा और मैं इसमें और सुविदाये और इसे और अच्छा बना पाऊंगा आपके "
990
- #~ "अनुसार. "
991
- #~ msgid "Other plugins"
992
- #~ msgstr "अन्य प्लगइन"
993
- #~ msgid "You may also be interested in some of my other plugins:"
994
- #~ msgstr "आपकी मेरे कुछ अन्य plugins में दिलचस्पी हो सकती है:"
995
- #~ msgid "HeadSpace"
996
- #~ msgstr "HeadSpace"
997
- #~ msgid ""
998
- #~ "The most complete SEO meta-data manager and all-round general purpose "
999
- #~ "plugin for WordPress. Replace five or six plugins with one single super-"
1000
- #~ "plugin!"
1001
- #~ msgstr ""
1002
- #~ "सबसे पूरा एसईओ meta-डेटा प्रबंधक और WordPress के लिए चौतरफा सामान्य प्रयोजन "
1003
- #~ "प्लगइन. पाँच या छह के बदलें में एक सुपर एकल प्लगइन इस्तिमाल करें !"
1004
- #~ msgid "Search Unleashed"
1005
- #~ msgstr "Search Unleashed"
1006
- #~ msgid ""
1007
- #~ "Attractive searches that go beyond the default WordPress search and "
1008
- #~ "increase the usefulness of your site."
1009
- #~ msgstr ""
1010
- #~ "आकर्षक खोज जो कि डिफ़ॉल्ट WordPress खोज से आगे जाकर अपनी साइट की उपयोगिता बढ़ाने "
1011
- #~ "में मदद करता है "
1012
- #~ msgid "Sniplets"
1013
- #~ msgstr "Sniplets"
1014
- #~ msgid ""
1015
- #~ "Very flexible and powerful text insertion that allows you to insert what "
1016
- #~ "you want, wherever you want it."
1017
- #~ msgstr ""
1018
- #~ "बहुत लचीला और शक्तिशाली पाठ प्रविष्टि जो आपको कहीं भी कुछ भी डालने की अनुमति देता "
1019
- #~ "है "
1020
- #~ msgid "How many widgets would you like?"
1021
- #~ msgstr "いくつウィジェットを追加しますか ?"
1022
- #~ msgid "This notice will only be shown at periodic intervals."
1023
- #~ msgstr "このお知らせは定期的な間隔でのみ表示されます。"
1024
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
locale/redirection-hr.mo DELETED
Binary file
locale/redirection-hr.po DELETED
@@ -1,876 +0,0 @@
1
- # Translation of Plugins - Redirection - Stable (latest release) in Croatian
2
- # This file is distributed under the same license as the Plugins - Redirection - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2017-09-03 16:16:13+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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/2.4.0-alpha\n"
11
- "Language: hr\n"
12
- "Project-Id-Version: Plugins - Redirection - Stable (latest release)\n"
13
-
14
- #: redirection-strings.php:42
15
- msgid "Cached Redirection detected"
16
- msgstr "Otkrivena je keširana redirekcija"
17
-
18
- #: redirection-strings.php:41
19
- msgid "Please clear your browser cache and reload this page"
20
- msgstr ""
21
-
22
- #: redirection-strings.php:17
23
- msgid "The data on this page has expired, please reload."
24
- msgstr "Podaci o ovoj stranici su zastarjeli, molim učitajte ponovo."
25
-
26
- #: redirection-strings.php:16
27
- msgid "WordPress did not return a response. This could mean an error occurred or that the request was blocked. Please check your server error_log."
28
- msgstr "WordPress nije odgovorio. Moguće je da je došlo do pogreške ili je zahtjev blokiran. Provjerite error_log vašeg poslužitelja."
29
-
30
- #: redirection-strings.php:15
31
- msgid "Your server returned a 403 Forbidden error which may indicate the request was blocked. Are you using a firewall or a security plugin?"
32
- msgstr "Poslužitelj je odgovorio da je došlo do pogreške \"403 Forbidden\", što može značiti da je zahtjev blokiran. Da li koristite vatrozid ili sigurosni dodatak (plugin)?"
33
-
34
- #: redirection-strings.php:14
35
- msgid "WordPress returned an unexpected message. This usually indicates that a plugin or theme is outputting data when it shouldn't be. Please try disabling other plugins and try again."
36
- msgstr "WordPress je odgovorio neočekivanom porukom. Do obično ukazuje da dodatak (plugin) ili tema generiraju izlaz kada ne bi trebali. Pokušajte deaktivirati ostale dodatke, pa pokušajte ponovo."
37
-
38
- #: redirection-strings.php:9
39
- msgid "If the issue isn't known then try disabling other plugins - it's easy to do, and you can re-enable them quickly. Other plugins can sometimes cause conflicts."
40
- msgstr "Ako ništa ne pomaže, pokušajte deaktivirati ostale dodatke - to jednostavno za napraviti, a možete ih brzo ponovo aktivirati. Ostali dodaci ponekad uzrokuju konflikte. "
41
-
42
- #: redirection-strings.php:4
43
- msgid "Include these details in your report {{strong}}along with a description of what you were doing{{/strong}}."
44
- msgstr "U svom izvještaju navedite ove pojedinosti {{strong}}i opišite što ste točno radili{{/strong}}."
45
-
46
- #: redirection-admin.php:211
47
- msgid "If you think Redirection is at fault then create an issue."
48
- msgstr ""
49
-
50
- #: redirection-admin.php:210
51
- msgid "This may be caused by another plugin - look at your browser's error console for more details."
52
- msgstr "Uzrok ovome bi mogao biti drugi dodatak - detalje potražite u konzoli za pogreške (error cosole) vašeg peglednika."
53
-
54
- #: redirection-admin.php:209
55
- msgid "An error occurred loading Redirection"
56
- msgstr "Došlo je do pogreške prilikom učitavanja Redirectiona."
57
-
58
- #: redirection-admin.php:202
59
- msgid "Loading, please wait..."
60
- msgstr "Učitavanje, stripte se molim..."
61
-
62
- #: redirection-strings.php:63
63
- msgid "{{strong}}CSV file format{{/strong}}: {{code}}source URL, target URL{{/code}} - and can be optionally followed with {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 for no, 1 for yes)."
64
- msgstr "{{strong}}Fromat CSV datoteke{{/strong}}: {{code}}izvorni URL, odredišni URL{{/code}} - i može biti popraćeno sa {{code}}regex, http code{{/code}} ({{code}}regex{{/code}} - 0 za ne, 1 za da)."
65
-
66
- #: redirection-strings.php:39
67
- msgid "Redirection is not working. Try clearing your browser cache and reloading this page."
68
- msgstr "Redirection ne radi. Pokušajte očistiti privremenu memoriju (cache) preglednika i ponovo učitati ovu stranicu."
69
-
70
- #: redirection-strings.php:38
71
- msgid "If that doesn't help, open your browser's error console and create a {{link}}new issue{{/link}} with the details."
72
- msgstr "Ako to ne pomogne, otvorite konzolu za pogreške (error console) vašeg preglednika i prijavite {{link}}novi problem{{/link}} s detaljnim opisom."
73
-
74
- #: redirection-strings.php:8
75
- msgid "If this is a new problem then please either {{strong}}create a new issue{{/strong}} or send it in an {{strong}}email{{/strong}}. Include a description of what you were trying to do and the important details listed below. Please include a screenshot."
76
- msgstr ""
77
-
78
- #: redirection-admin.php:215 redirection-strings.php:7
79
- msgid "Create Issue"
80
- msgstr ""
81
-
82
- #: redirection-strings.php:6
83
- msgid "Email"
84
- msgstr "Email"
85
-
86
- #: redirection-strings.php:5
87
- msgid "Important details"
88
- msgstr "Važne pojedinosti"
89
-
90
- #: redirection-strings.php:214
91
- msgid "Need help?"
92
- msgstr "Trebate li pomoć?"
93
-
94
- #: redirection-strings.php:213
95
- msgid "First check the FAQ below. If you continue to have a problem then please disable all other plugins and check if the problem persists."
96
- msgstr "Prvo provjerite niže navedana često postavljana pitanja (FAQ). Ako se ne riješite problema, deaktivirajte ostale dodatke i provjerite da li je problem i dalje prisutan. "
97
-
98
- #: redirection-strings.php:212
99
- msgid "You can report bugs and new suggestions in the Github repository. Please provide as much information as possible, with screenshots, to help explain your issue."
100
- msgstr "Prijave nedostataka i nove prijedloge možete unijeti putem Github repozitorija. Opišite ih sa što je moguće više pojedinosti i upotpunite sa snimkama zaslona."
101
-
102
- #: redirection-strings.php:211
103
- msgid "Please note that any support is provide on as-time-is-available basis and is not guaranteed. I do not provide paid support."
104
- msgstr "Napominjem da podršku pružam koliko mi to dopušta raspoloživo vrijeme. Ne osiguravam plaćenu podršku."
105
-
106
- #: redirection-strings.php:210
107
- msgid "If you want to submit information that you don't want in a public repository then send it directly via {{email}}email{{/email}}."
108
- msgstr "Želite li poslati informacije, ali ne putem javno dostupnog repozitorija, pošaljite ih izravno na {{email}}email{{/email}}."
109
-
110
- #: redirection-strings.php:205
111
- msgid "Can I redirect all 404 errors?"
112
- msgstr "Mogu li preusmjeriti sve 404 pogreške."
113
-
114
- #: redirection-strings.php:204
115
- msgid "No, and it isnt advised that you do so. A 404 error is the correct response to return for a page that doesn't exist. If you redirect it you are indicating that it once existed, and this could dilute your site."
116
- msgstr "Ne, niti je to preporučljivo. Greška 404 je ispravan odgovor na zahtjev da se prikaže nepostojeća stranica. Preusmjeravanjem takvog zahtjeva poručujete da je tražena stranica nekada postojala."
117
-
118
- #: redirection-strings.php:191
119
- msgid "Pos"
120
- msgstr ""
121
-
122
- #: redirection-strings.php:166
123
- msgid "410 - Gone"
124
- msgstr "410 - Gone"
125
-
126
- #: redirection-strings.php:160
127
- msgid "Position"
128
- msgstr "Pozicija"
129
-
130
- #: redirection-strings.php:129
131
- msgid "Used to auto-generate a URL if no URL is given. Use the special tags {{code}}$dec${{/code}} or {{code}}$hex${{/code}} to insert a unique ID inserted"
132
- msgstr ""
133
-
134
- #: redirection-strings.php:128
135
- msgid "Apache Module"
136
- msgstr "Apache modul"
137
-
138
- #: redirection-strings.php:127
139
- msgid "Enter the full path and filename if you want Redirection to automatically update your {{code}}.htaccess{{/code}}."
140
- msgstr ""
141
- "Unesite potunu putanju i naziv datoteke ako želite da Redirection automatski\n"
142
- "ažurira {{code}}.htaccess{{/code}}."
143
-
144
- #: redirection-strings.php:78
145
- msgid "Import to group"
146
- msgstr "Importirajte u grupu"
147
-
148
- #: redirection-strings.php:77
149
- msgid "Import a CSV, .htaccess, or JSON file."
150
- msgstr "Importirajte a CSV, .htaccess, ili JSON datoteku."
151
-
152
- #: redirection-strings.php:76
153
- msgid "Click 'Add File' or drag and drop here."
154
- msgstr "Kliknite 'Dodaj datoteku' ili je dovucite i ispustite ovdje."
155
-
156
- #: redirection-strings.php:75
157
- msgid "Add File"
158
- msgstr "Dodaj datoteku"
159
-
160
- #: redirection-strings.php:74
161
- msgid "File selected"
162
- msgstr "Odabrana datoteka"
163
-
164
- #: redirection-strings.php:71
165
- msgid "Importing"
166
- msgstr "Importiranje"
167
-
168
- #: redirection-strings.php:70
169
- msgid "Finished importing"
170
- msgstr "Importiranje dovršeno"
171
-
172
- #: redirection-strings.php:69
173
- msgid "Total redirects imported:"
174
- msgstr "Ukupan broj importiranih redirekcija:"
175
-
176
- #: redirection-strings.php:68
177
- msgid "Double-check the file is the correct format!"
178
- msgstr "Provjerite još jednom da li je format datoteke ispravan!"
179
-
180
- #: redirection-strings.php:67
181
- msgid "OK"
182
- msgstr "OK"
183
-
184
- #: redirection-strings.php:66
185
- msgid "Close"
186
- msgstr "Zatvori"
187
-
188
- #: redirection-strings.php:64
189
- msgid "All imports will be appended to the current database."
190
- msgstr "Sve importirano biti će dodano postojećoj bazi. "
191
-
192
- #: redirection-strings.php:62 redirection-strings.php:84
193
- msgid "Export"
194
- msgstr "Eksport"
195
-
196
- #: redirection-strings.php:61
197
- msgid "Export to CSV, Apache .htaccess, Nginx, or Redirection JSON (which contains all redirects and groups)."
198
- msgstr "Eksport u CSV, Apache .htaccess, Nginx, ili Redirection JSON (koji sadrži sva preusmjeravanja i grupe)."
199
-
200
- #: redirection-strings.php:60
201
- msgid "Everything"
202
- msgstr "Sve"
203
-
204
- #: redirection-strings.php:59
205
- msgid "WordPress redirects"
206
- msgstr "WordPressova preusmjeravanja"
207
-
208
- #: redirection-strings.php:58
209
- msgid "Apache redirects"
210
- msgstr "Apache preusmjeravanja"
211
-
212
- #: redirection-strings.php:57
213
- msgid "Nginx redirects"
214
- msgstr "Nginx preusmjeravaja"
215
-
216
- #: redirection-strings.php:56
217
- msgid "CSV"
218
- msgstr "CSV"
219
-
220
- #: redirection-strings.php:55
221
- msgid "Apache .htaccess"
222
- msgstr "Apache .htaccess"
223
-
224
- #: redirection-strings.php:54
225
- msgid "Nginx rewrite rules"
226
- msgstr "Nginx rewrite rules"
227
-
228
- #: redirection-strings.php:53
229
- msgid "Redirection JSON"
230
- msgstr "Redirection JSON"
231
-
232
- #: redirection-strings.php:52
233
- msgid "View"
234
- msgstr "Pogled"
235
-
236
- #: redirection-strings.php:50
237
- msgid "Log files can be exported from the log pages."
238
- msgstr "Log datoteke mogu biti eksportirane sa log stranica."
239
-
240
- #: redirection-strings.php:47 redirection-strings.php:103
241
- msgid "Import/Export"
242
- msgstr "Import/Eksport"
243
-
244
- #: redirection-strings.php:46
245
- msgid "Logs"
246
- msgstr "Logovi"
247
-
248
- #: redirection-strings.php:45
249
- msgid "404 errors"
250
- msgstr "404 pogreške"
251
-
252
- #: redirection-strings.php:37
253
- msgid "Please mention {{code}}%s{{/code}}, and explain what you were doing at the time"
254
- msgstr "Navedite {{code}}%s{{/code}}, i pojasnite što ste točno radili"
255
-
256
- #: redirection-strings.php:120
257
- msgid "I'd like to support some more."
258
- msgstr "Želim dodatno podržati."
259
-
260
- #: redirection-strings.php:117
261
- msgid "Support 💰"
262
- msgstr "Podrška 💰"
263
-
264
- #: redirection-strings.php:241
265
- msgid "Redirection saved"
266
- msgstr "Redirekcija spremljena