Version Description
- Fixes issue introduced in v3.0.3 where some custom post/page dropdown fields were failing to show.
Download this release
Release Info
Developer | kylephillips |
Plugin | Nested Pages |
Version | 3.0.6 |
Comparing to | |
See all releases |
Code changes from version 3.0.5 to 3.0.6
- app/Entities/Post/PrivatePostParent.php +6 -2
- app/Helpers.php +0 -10
- app/NestedPages.php +1 -1
- app/Views/partials/row-link.php +1 -1
- languages/nestedpages-pt_BR.mo +0 -0
- languages/nestedpages-pt_BR.po +961 -0
- nestedpages.php +1 -1
- readme.txt +4 -1
app/Entities/Post/PrivatePostParent.php
CHANGED
@@ -10,13 +10,17 @@ class PrivatePostParent
|
|
10 |
{
|
11 |
public function __construct()
|
12 |
{
|
13 |
-
add_filter('wp_dropdown_pages', [$this, 'metabox']);
|
14 |
}
|
15 |
|
16 |
-
public function metabox($output)
|
17 |
{
|
18 |
global $post;
|
19 |
if ( !$post ) return $output;
|
|
|
|
|
|
|
|
|
20 |
|
21 |
$args = [
|
22 |
'post_type' => $post->post_type,
|
10 |
{
|
11 |
public function __construct()
|
12 |
{
|
13 |
+
add_filter('wp_dropdown_pages', [$this, 'metabox'], 10, 3);
|
14 |
}
|
15 |
|
16 |
+
public function metabox($output, $arguments, $pages)
|
17 |
{
|
18 |
global $post;
|
19 |
if ( !$post ) return $output;
|
20 |
+
if ( !isset($arguments['post_type']) ) return $output;
|
21 |
+
if ( !isset($arguments['name']) ) return $output;
|
22 |
+
if ( $arguments['post_type'] !== $post->post_type ) return $output;
|
23 |
+
if ( $arguments['name'] !== 'parent_id' ) return $output;
|
24 |
|
25 |
$args = [
|
26 |
'post_type' => $post->post_type,
|
app/Helpers.php
CHANGED
@@ -6,16 +6,6 @@ namespace NestedPages;
|
|
6 |
*/
|
7 |
class Helpers
|
8 |
{
|
9 |
-
/**
|
10 |
-
* Verify URL Format
|
11 |
-
* @param string - URL to check
|
12 |
-
* @return string - formatted URL
|
13 |
-
*/
|
14 |
-
public static function check_url($url)
|
15 |
-
{
|
16 |
-
return esc_url($url);
|
17 |
-
}
|
18 |
-
|
19 |
/**
|
20 |
* Plugin Root Directory
|
21 |
*/
|
6 |
*/
|
7 |
class Helpers
|
8 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
/**
|
10 |
* Plugin Root Directory
|
11 |
*/
|
app/NestedPages.php
CHANGED
@@ -12,7 +12,7 @@ class NestedPages
|
|
12 |
$np_env = 'live';
|
13 |
|
14 |
global $np_version;
|
15 |
-
$np_version = '3.0.
|
16 |
|
17 |
if ( is_admin() ) $app = new NestedPages\Bootstrap;
|
18 |
if ( !is_admin() ) $app = new NestedPages\FrontEndBootstrap;
|
12 |
$np_env = 'live';
|
13 |
|
14 |
global $np_version;
|
15 |
+
$np_version = '3.0.6';
|
16 |
|
17 |
if ( is_admin() ) $app = new NestedPages\Bootstrap;
|
18 |
if ( !is_admin() ) $app = new NestedPages\FrontEndBootstrap;
|
app/Views/partials/row-link.php
CHANGED
@@ -54,7 +54,7 @@ $link = ( $this->post->nav_type && $this->post->nav_type !== 'custom' )
|
|
54 |
data-id="<?php echo esc_attr($this->post->id); ?>"
|
55 |
data-parentid="<?php echo esc_attr($this->post->parent_id); ?>"
|
56 |
data-title="<?php echo esc_attr($this->post->title); ?>"
|
57 |
-
data-url="<?php echo
|
58 |
data-status="<?php echo esc_attr($this->post->status); ?>"
|
59 |
data-np-status="<?php echo esc_attr($this->post->np_status); ?>"
|
60 |
data-navstatus="<?php echo esc_attr($this->post->nav_status); ?>"
|
54 |
data-id="<?php echo esc_attr($this->post->id); ?>"
|
55 |
data-parentid="<?php echo esc_attr($this->post->parent_id); ?>"
|
56 |
data-title="<?php echo esc_attr($this->post->title); ?>"
|
57 |
+
data-url="<?php echo esc_url($this->post->content); ?>"
|
58 |
data-status="<?php echo esc_attr($this->post->status); ?>"
|
59 |
data-np-status="<?php echo esc_attr($this->post->np_status); ?>"
|
60 |
data-navstatus="<?php echo esc_attr($this->post->nav_status); ?>"
|
languages/nestedpages-pt_BR.mo
ADDED
Binary file
|
languages/nestedpages-pt_BR.po
ADDED
@@ -0,0 +1,961 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Nested Pages - Stable (latest release) in Portuguese (Brazil)
|
2 |
+
# This file is distributed under the same license as the Plugins - Nested Pages - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2018-06-15 14:05-0300\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: Poedit 1.8.3\n"
|
11 |
+
"Language: pt_BR\n"
|
12 |
+
"Project-Id-Version: Plugins - Nested Pages - Stable (latest release)\n"
|
13 |
+
"POT-Creation-Date: \n"
|
14 |
+
"Last-Translator: \n"
|
15 |
+
"Language-Team: \n"
|
16 |
+
|
17 |
+
#: app/Entities/Post/PrivatePostParent.php:26
|
18 |
+
msgid "(no parent)"
|
19 |
+
msgstr "(sem ascendente)"
|
20 |
+
|
21 |
+
#: app/Activation/Dependencies.php:135
|
22 |
+
msgid "Are you sure you would like to empty the trash? This action is not reversible."
|
23 |
+
msgstr "Tem certeza que deseja esvaziar a lixeira? Essa ação não poderá ser revertida."
|
24 |
+
|
25 |
+
#: app/Views/settings/settings-posttypes.php:287
|
26 |
+
msgid "Initial Order:"
|
27 |
+
msgstr "Ordem Inicial:"
|
28 |
+
|
29 |
+
#: app/Views/settings/settings-posttypes.php:271
|
30 |
+
msgid "Default (Menu Order)"
|
31 |
+
msgstr "Padrão (Ordem do Menu)"
|
32 |
+
|
33 |
+
#: app/Views/settings/settings-posttypes.php:264
|
34 |
+
msgid "Initial Order By:"
|
35 |
+
msgstr "Ordenar Inicialmente Por:"
|
36 |
+
|
37 |
+
#: app/Views/partials/row.php:185
|
38 |
+
msgid "Push to Bottom"
|
39 |
+
msgstr "Mover para Baixo"
|
40 |
+
|
41 |
+
#: app/Views/partials/row.php:176
|
42 |
+
msgid "Push to Top"
|
43 |
+
msgstr "Mover para Cima"
|
44 |
+
|
45 |
+
#: app/Views/partials/row.php:165
|
46 |
+
msgid "Insert %s After"
|
47 |
+
msgstr "Inserir %s Depois"
|
48 |
+
|
49 |
+
#: app/Views/partials/row.php:159
|
50 |
+
msgid "Insert %s Before"
|
51 |
+
msgstr "Inserir %s Antes"
|
52 |
+
|
53 |
+
#: app/Views/partials/list-header.php:17 app/Views/partials/tool-list.php:150
|
54 |
+
msgid "Apply"
|
55 |
+
msgstr "Aplicar"
|
56 |
+
|
57 |
+
#: app/Views/partials/bulk-edit.php:72
|
58 |
+
msgid "— No Change —"
|
59 |
+
msgstr "— Sem Alterações —"
|
60 |
+
|
61 |
+
#: app/Views/partials/bulk-edit.php:69
|
62 |
+
msgid "Parent"
|
63 |
+
msgstr "Ascendente"
|
64 |
+
|
65 |
+
#: app/Form/Validation/Validation.php:187
|
66 |
+
msgid "A valid parent page was not provided to insert after."
|
67 |
+
msgstr "Uma página ascendente válida não foi fornecida para inserir depois."
|
68 |
+
|
69 |
+
#: app/Form/Validation/Validation.php:181
|
70 |
+
msgid "A valid parent page was not provided to insert before."
|
71 |
+
msgstr "Uma página ascendente válida não foi fornecida para inserir antes."
|
72 |
+
|
73 |
+
#: app/Activation/Dependencies.php:151
|
74 |
+
msgid "Insert After"
|
75 |
+
msgstr "Inserir Depois"
|
76 |
+
|
77 |
+
#: app/Activation/Dependencies.php:150
|
78 |
+
msgid "Insert Before"
|
79 |
+
msgstr "Inserir Antes"
|
80 |
+
|
81 |
+
#: app/Views/settings/settings-general.php:87
|
82 |
+
msgid "Settings have been successfully reset."
|
83 |
+
msgstr "As configurações foram redefinidas com sucesso."
|
84 |
+
|
85 |
+
#: app/Views/settings/settings-general.php:83
|
86 |
+
msgid "Reset Nested Pages Settings"
|
87 |
+
msgstr "Redefinir as configurações do Nested Pages"
|
88 |
+
|
89 |
+
#: app/Views/settings/settings-general.php:80
|
90 |
+
msgid "Warning: Resetting plugin settings will remove all menu settings, post type customizations, role customizations and any other Nested Pages settings. These will be replaced with the default settings. This action cannot be undone."
|
91 |
+
msgstr "Aviso: Redefinir as configurações do plugin irá remover todas as configurações de menu, customizações de tipos de posts, customizações de funções e qualquer outra configuração do Nested Pages. Todas as configurações serão substituídas pelas configurações padrões. Essa ação não poderá der desfeita."
|
92 |
+
|
93 |
+
#: app/Views/settings/settings-general.php:76
|
94 |
+
msgid "Reset Plugin Settings"
|
95 |
+
msgstr "Redefinir Configurações do Plugin"
|
96 |
+
|
97 |
+
#: app/Views/settings/settings-posttypes.php:250
|
98 |
+
msgid "Add and remove sort options."
|
99 |
+
msgstr "Adicionar e remover opções de ordenação."
|
100 |
+
|
101 |
+
#: app/Views/settings/settings-posttypes.php:249
|
102 |
+
msgid "Sort Options"
|
103 |
+
msgstr "Opções de Ordenação"
|
104 |
+
|
105 |
+
#: app/Views/settings/settings-posttypes.php:7
|
106 |
+
msgid "Enable Post Types:"
|
107 |
+
msgstr "Habilitar Tipos de Post:"
|
108 |
+
|
109 |
+
#: app/Views/partials/wpml-translations.php:13
|
110 |
+
msgid "Close"
|
111 |
+
msgstr "Fechar"
|
112 |
+
|
113 |
+
#: app/Views/partials/wpml-translations.php:4
|
114 |
+
msgid "Translations for "
|
115 |
+
msgstr "Traduções para"
|
116 |
+
|
117 |
+
#: app/Views/partials/row.php:119
|
118 |
+
msgid "Translations"
|
119 |
+
msgstr "Traduções"
|
120 |
+
|
121 |
+
#: app/Views/partials/row.php:76
|
122 |
+
msgid "Sticky"
|
123 |
+
msgstr "Pegajoso"
|
124 |
+
|
125 |
+
#: app/Views/forms/quickedit-post.php:152
|
126 |
+
msgid "Make Sticky"
|
127 |
+
msgstr "Deixar Pegajoso"
|
128 |
+
|
129 |
+
#: app/Form/Listeners/WpmlTranslations.php:35
|
130 |
+
msgid "There are currently no translations for the selected post."
|
131 |
+
msgstr "Não existem traduções para o post selecionado."
|
132 |
+
|
133 |
+
#: app/Form/Listeners/WpmlTranslations.php:28
|
134 |
+
msgid "WPML is not currently installed."
|
135 |
+
msgstr "WPML não está instalado atualmente."
|
136 |
+
|
137 |
+
#: app/Entities/PluginIntegration/WPML.php:223
|
138 |
+
msgid "All Languages"
|
139 |
+
msgstr "Todas as Linguagens"
|
140 |
+
|
141 |
+
#: app/Entities/PluginIntegration/WPML.php:146
|
142 |
+
msgid "Sync WPML Menus"
|
143 |
+
msgstr "Sincronizar Menus WPML"
|
144 |
+
|
145 |
+
#: app/Activation/Dependencies.php:148
|
146 |
+
msgid "Add Translation"
|
147 |
+
msgstr "Adicionar Tradução"
|
148 |
+
|
149 |
+
#: app/Views/settings/settings-posttypes.php:108
|
150 |
+
msgid "There are currently no pages available."
|
151 |
+
msgstr "Não existem páginas disponível atualmente."
|
152 |
+
|
153 |
+
#: app/Views/settings/settings-posttypes.php:95
|
154 |
+
msgid "No pages were found."
|
155 |
+
msgstr "Nenhuma página encontrada."
|
156 |
+
|
157 |
+
#: app/Views/settings/settings-posttypes.php:94
|
158 |
+
msgid "Search Pages"
|
159 |
+
msgstr "Buscar Páginas"
|
160 |
+
|
161 |
+
#: app/Views/settings/settings-posttypes.php:79
|
162 |
+
msgid "Assign Page"
|
163 |
+
msgstr "Atribuir Página"
|
164 |
+
|
165 |
+
#: app/Views/settings/settings-posttypes.php:76
|
166 |
+
msgid "Adds contextual links and post counts to the page row for the assigned post type."
|
167 |
+
msgstr "Adicionar um link contextual e uma contagem de posts para a linha da página para o tipo de post atribuído."
|
168 |
+
|
169 |
+
#: app/Views/settings/settings-posttypes.php:75
|
170 |
+
msgid "Assign Page for Listing"
|
171 |
+
msgstr "Atribuir Página para Listagem."
|
172 |
+
|
173 |
+
#: app/Views/settings/settings-posttypes.php:52
|
174 |
+
msgid "Remove drag and drop sorting from this post type."
|
175 |
+
msgstr "Remover ordenação “arraste e solte” desse tipo de post."
|
176 |
+
|
177 |
+
#: app/Views/settings/settings-posttypes.php:51
|
178 |
+
#: app/Views/settings/settings-posttypes.php:55
|
179 |
+
msgid "Disable Sorting"
|
180 |
+
msgstr "Desabilitar Ordenação"
|
181 |
+
|
182 |
+
#: app/Activation/Dependencies.php:145
|
183 |
+
#: app/Views/settings/settings-posttypes.php:86
|
184 |
+
msgid "Remove"
|
185 |
+
msgstr "Remover"
|
186 |
+
|
187 |
+
#: app/Activation/Dependencies.php:144
|
188 |
+
#: app/Views/settings/settings-posttypes.php:86
|
189 |
+
msgid "Currently assigned to:"
|
190 |
+
msgstr "Atualmente atribuído para:"
|
191 |
+
|
192 |
+
#: app/Views/listing.php:78 app/Views/listing.php:81
|
193 |
+
msgid "Dismiss this notice."
|
194 |
+
msgstr "Ocultar este aviso."
|
195 |
+
|
196 |
+
#. Description of the plugin/theme
|
197 |
+
msgid "Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while enhancing quick edit. Includes an auto-generated menu to match the nested interface, support for all post types and more."
|
198 |
+
msgstr "Fornece uma interface intuitiva de “arraste e solte” para organizar as páginas na administração do Wordpress, e melhor a edição rápida. Inclui um menu gerado automaticamente para corresponder a interface aninhada, suporta todos os tipos de post e muito mais."
|
199 |
+
|
200 |
+
#: app/Views/settings/settings-posttypes.php:233
|
201 |
+
msgid "No ACF Fields configured for this post type"
|
202 |
+
msgstr "Não existem campos ACF configurados para esse tipo de post"
|
203 |
+
|
204 |
+
#: app/Views/settings/settings-posttypes.php:218
|
205 |
+
msgid "Advanced Custom Fields"
|
206 |
+
msgstr "Advanced Custom Fields"
|
207 |
+
|
208 |
+
#: app/Views/settings/settings-posttypes.php:212
|
209 |
+
msgid "Check to Include in Quick Edit."
|
210 |
+
msgstr "Marque para incluir na Edição Rápida"
|
211 |
+
|
212 |
+
#: app/Views/settings/settings-posttypes.php:206
|
213 |
+
msgid "Set which custom fields display in the quick edit form."
|
214 |
+
msgstr "Definir quais campos personalizados aparecem no formulário de edição rápida."
|
215 |
+
|
216 |
+
#: app/Views/settings/settings-posttypes.php:205
|
217 |
+
#: app/Views/settings/settings-posttypes.php:209
|
218 |
+
msgid "Configure Custom Fields"
|
219 |
+
msgstr "Configurar Campos Personalizados"
|
220 |
+
|
221 |
+
#: app/Views/settings/settings-posttypes.php:163
|
222 |
+
msgid "Check to remove from Quick Edit."
|
223 |
+
msgstr "Marque para remover da Edição Rápida"
|
224 |
+
|
225 |
+
#: app/Views/settings/settings-posttypes.php:157
|
226 |
+
msgid "Remove standard fields from the quick edit form."
|
227 |
+
msgstr "Remover campos padrões do formulário de edição rápida."
|
228 |
+
|
229 |
+
#: app/Views/settings/settings-posttypes.php:156
|
230 |
+
#: app/Views/settings/settings-posttypes.php:160
|
231 |
+
msgid "Configure Standard Fields"
|
232 |
+
msgstr "Configurar Campos Padrões"
|
233 |
+
|
234 |
+
#: app/Views/settings/settings-posttypes.php:147
|
235 |
+
msgid "Large"
|
236 |
+
msgstr "Grande"
|
237 |
+
|
238 |
+
#: app/Views/settings/settings-posttypes.php:146
|
239 |
+
msgid "Medium"
|
240 |
+
msgstr "Médio"
|
241 |
+
|
242 |
+
#: app/Views/settings/settings-posttypes.php:145
|
243 |
+
msgid "Small"
|
244 |
+
msgstr "Ppequena"
|
245 |
+
|
246 |
+
#: app/Views/settings/settings-posttypes.php:143
|
247 |
+
msgid "Thumbnail Display Size"
|
248 |
+
msgstr "Tamanho de Visualização da Miniatura"
|
249 |
+
|
250 |
+
#: app/Views/settings/settings-posttypes.php:132
|
251 |
+
msgid "Thumbnail Source"
|
252 |
+
msgstr "Origem da Miniatura"
|
253 |
+
|
254 |
+
#: app/Views/settings/settings-posttypes.php:129
|
255 |
+
msgid "Display Thumbnails for"
|
256 |
+
msgstr "Mostrar Miniaturas para"
|
257 |
+
|
258 |
+
#: app/Views/settings/settings-posttypes.php:126
|
259 |
+
msgid "Note: Thumbnail width is displayed at a maximum of 80px in the nested pages view. The image is scaled proportionally."
|
260 |
+
msgstr "Nota: A largura da miniatura é mostrada com no máximo 80px na visão aninhada. A imagem é redimencionada proporcionalmente."
|
261 |
+
|
262 |
+
#: app/Views/settings/settings-posttypes.php:125
|
263 |
+
msgid "Display the thumbnail in the list sort view."
|
264 |
+
msgstr "Mostrar a miniatura na visualização de ordenação de lista."
|
265 |
+
|
266 |
+
#: app/Views/settings/settings-posttypes.php:124
|
267 |
+
msgid "Display Thumbnails"
|
268 |
+
msgstr "Exibir Miniaturas"
|
269 |
+
|
270 |
+
#: app/Views/settings/settings-posttypes.php:67
|
271 |
+
msgid "Disable Nesting for"
|
272 |
+
msgstr "Desabilitar Aninhamento para"
|
273 |
+
|
274 |
+
#: app/Views/settings/settings-posttypes.php:64
|
275 |
+
msgid "To disable nesting on hierarchical post types, select this option."
|
276 |
+
msgstr "para desabilitar o aninhamento em tipos de post hierárquicos, selecione esta opção."
|
277 |
+
|
278 |
+
#: app/Views/settings/settings-posttypes.php:44
|
279 |
+
msgid "Hide Default"
|
280 |
+
msgstr "Ocultar Padrão"
|
281 |
+
|
282 |
+
#: app/Views/settings/settings-posttypes.php:41
|
283 |
+
msgid "If the default menu is replaced, a link to the default view will be added. Select this to remove the link"
|
284 |
+
msgstr "Se o menu padrão for trocado, um link para a visualização padrão será adicionado. Selecione isso para remover o link."
|
285 |
+
|
286 |
+
#: app/Views/settings/settings-posttypes.php:40
|
287 |
+
msgid "Remove Default Link"
|
288 |
+
msgstr "Remover Link Padrão"
|
289 |
+
|
290 |
+
#: app/Views/settings/settings-posttypes.php:33
|
291 |
+
msgid "Menu"
|
292 |
+
msgstr "Menu"
|
293 |
+
|
294 |
+
#: app/Views/settings/settings-posttypes.php:33
|
295 |
+
msgid "Replace Default"
|
296 |
+
msgstr "Substituir Padrão"
|
297 |
+
|
298 |
+
#: app/Views/settings/settings-posttypes.php:30
|
299 |
+
msgid "Replace the default top-level item with the nested view link."
|
300 |
+
msgstr "Substitua o item de nível superior padrões com o link de visualização aninhada."
|
301 |
+
|
302 |
+
#: app/Views/settings/settings-general.php:50
|
303 |
+
msgid "Manually sync page order."
|
304 |
+
msgstr "Sincronizar ordem das páginas manualmente."
|
305 |
+
|
306 |
+
#: app/Views/settings/settings-general.php:44
|
307 |
+
msgid "Manually sync menu."
|
308 |
+
msgstr "Sincronizar menu manualmente."
|
309 |
+
|
310 |
+
#: app/Views/partials/list-header.php:19
|
311 |
+
msgid "Nested Items Selected"
|
312 |
+
msgstr "Selecionar Itens Aninhados"
|
313 |
+
|
314 |
+
#: app/Views/partials/list-header.php:13
|
315 |
+
msgid "Move to Trash"
|
316 |
+
msgstr "Mover para Lixeira"
|
317 |
+
|
318 |
+
#: app/Views/partials/bulk-edit.php:102 app/Views/partials/bulk-edit.php:112
|
319 |
+
msgid "Show"
|
320 |
+
msgstr "Mostrar"
|
321 |
+
|
322 |
+
#: app/Views/partials/bulk-edit.php:101 app/Views/partials/bulk-edit.php:111
|
323 |
+
msgid "Hide"
|
324 |
+
msgstr "Ocultar"
|
325 |
+
|
326 |
+
#: app/Views/partials/bulk-edit.php:98
|
327 |
+
msgid "Display in Nested View"
|
328 |
+
msgstr "Mostrar em Visualização Aninhada"
|
329 |
+
|
330 |
+
#: app/Views/partials/bulk-edit.php:92
|
331 |
+
msgid "Do not allow"
|
332 |
+
msgstr "Não permitir"
|
333 |
+
|
334 |
+
#: app/Views/partials/bulk-edit.php:91
|
335 |
+
msgid "Allow"
|
336 |
+
msgstr "Permitir"
|
337 |
+
|
338 |
+
#: app/Views/partials/bulk-edit.php:88 app/Views/partials/row.php:130
|
339 |
+
msgid "Comments"
|
340 |
+
msgstr "Comentários"
|
341 |
+
|
342 |
+
#: app/Views/partials/bulk-edit.php:25 app/Views/partials/bulk-edit.php:46
|
343 |
+
#: app/Views/partials/bulk-edit.php:60 app/Views/partials/bulk-edit.php:90
|
344 |
+
#: app/Views/partials/bulk-edit.php:100 app/Views/partials/bulk-edit.php:110
|
345 |
+
msgid "No Change"
|
346 |
+
msgstr "Sem Alterações"
|
347 |
+
|
348 |
+
#: app/Views/partials/bulk-edit.php:13
|
349 |
+
msgid "There are links selected. Bulk edit will not apply to links."
|
350 |
+
msgstr "Existem links selecionados. A edição em massa não será aplicada aos links."
|
351 |
+
|
352 |
+
#: app/Views/partials/bulk-edit.php:10
|
353 |
+
msgid "Bulk Edit"
|
354 |
+
msgstr "Edição em Massa"
|
355 |
+
|
356 |
+
#: app/Views/listing.php:36 app/Views/settings/settings-posttypes.php:284
|
357 |
+
msgid "Order"
|
358 |
+
msgstr "Ordem"
|
359 |
+
|
360 |
+
#: app/Views/listing.php:36
|
361 |
+
msgid "Sync"
|
362 |
+
msgstr "Sincronizar"
|
363 |
+
|
364 |
+
#: app/Entities/Confirmation/TrashRestoredConfirmation.php:12
|
365 |
+
msgid "item"
|
366 |
+
msgstr "item"
|
367 |
+
|
368 |
+
#: app/Entities/Confirmation/TrashRestoredConfirmation.php:12
|
369 |
+
msgid "items"
|
370 |
+
msgstr "itens"
|
371 |
+
|
372 |
+
#: app/Entities/Confirmation/TrashConfirmation.php:19
|
373 |
+
msgid "Link Removed."
|
374 |
+
msgstr "Link Removido."
|
375 |
+
|
376 |
+
#: app/Entities/Confirmation/TrashConfirmation.php:18
|
377 |
+
msgid "Links Removed."
|
378 |
+
msgstr "Links Removidos."
|
379 |
+
|
380 |
+
#: app/Config/SettingsRepository.php:83
|
381 |
+
msgid "Password/Private"
|
382 |
+
msgstr "Senha/Privado"
|
383 |
+
|
384 |
+
#: app/Config/SettingsRepository.php:82
|
385 |
+
msgid "Post Status"
|
386 |
+
msgstr "Status do Post"
|
387 |
+
|
388 |
+
#: app/Config/SettingsRepository.php:80
|
389 |
+
msgid "Post Date"
|
390 |
+
msgstr "Data do Post"
|
391 |
+
|
392 |
+
#: app/Config/SettingsRepository.php:78
|
393 |
+
msgid "Post Title"
|
394 |
+
msgstr "Título do Post"
|
395 |
+
|
396 |
+
#: app/Activation/Dependencies.php:141
|
397 |
+
msgid "Trash Posts and Delete Links"
|
398 |
+
msgstr "Posts e Links Excluídos"
|
399 |
+
|
400 |
+
#: app/Activation/Dependencies.php:139
|
401 |
+
msgid "Are you sure you would like to delete this item? This action is not reversible."
|
402 |
+
msgstr "Você tem certeza que gostaria de deletar este item? Essa ação é irreversível."
|
403 |
+
|
404 |
+
#: app/Activation/Dependencies.php:138
|
405 |
+
msgid "Your selection includes link items, which cannot be recovered after deleting. Would you like to continue? (Other items are moved to the trash)"
|
406 |
+
msgstr "Sua seleção inclui link, que não podem ser recuperados após serem excluídos. Você gostaria de continuar? (Outros itens serão movidos para lixeira)"
|
407 |
+
|
408 |
+
#: app/Activation/Dependencies.php:137 app/Views/partials/list-header.php:11
|
409 |
+
msgid "Bulk Actions"
|
410 |
+
msgstr "Ações em Massa"
|
411 |
+
|
412 |
+
#. Author URI of the plugin/theme
|
413 |
+
msgid "https://github.com/kylephillips"
|
414 |
+
msgstr "https://github.com/kylephillips"
|
415 |
+
|
416 |
+
#. Author of the plugin/theme
|
417 |
+
msgid "Kyle Phillips"
|
418 |
+
msgstr "Kyle Phillips"
|
419 |
+
|
420 |
+
#. Plugin URI of the plugin/theme
|
421 |
+
msgid "http://nestedpages.com"
|
422 |
+
msgstr "http://nestedpages.com"
|
423 |
+
|
424 |
+
#: app/Views/settings/settings.php:10
|
425 |
+
msgid "Post Types"
|
426 |
+
msgstr "Tipos de Post"
|
427 |
+
|
428 |
+
#: app/Views/settings/settings.php:6
|
429 |
+
msgid "General"
|
430 |
+
msgstr "Geral"
|
431 |
+
|
432 |
+
#: app/Views/settings/settings-posttypes.php:327
|
433 |
+
msgid "<strong>Important:</strong> Changing page structures on live sites may effect SEO and existing inbound links. Limit URL structure changes on live sites by disabling nesting. Sorting within the current nesting structure will still be available. If nesting changes are made to a live site, it may help to add a 301 redirect from the old location to the new one."
|
434 |
+
msgstr "<strong>Importante:</strong> Mudar estruturas de páginas em sites publicados pode afetar o SEO e links inbound existentes. Limite as mudanças de estrutura em sites publicados desabilitando o aninhamento. A ordenação na estrutura de aninhamento atual ainda continuará disponível. Se mudanças de aninhamento forem realizadas a um site publicado, pode ser útil adicionar redirecionamentos 301 apontando do antigo endereço para o novo."
|
435 |
+
|
436 |
+
#: app/Views/settings/settings-posttypes.php:324
|
437 |
+
msgid "If default menu is not replaced, an additional submenu item will be added for \"Nested/Sort View\""
|
438 |
+
msgstr "Se o menu padrão não for substituído, um submenu adicional será adicionado para “Visualização Aninhada/Ordenada”"
|
439 |
+
|
440 |
+
#: app/Views/settings/settings-posttypes.php:63
|
441 |
+
msgid "Disable Nesting"
|
442 |
+
msgstr "Desabilitar Aninhamento"
|
443 |
+
|
444 |
+
#: app/Views/settings/settings-posttypes.php:29
|
445 |
+
msgid "Replace Default Menu"
|
446 |
+
msgstr "Substituir Menu Padrão"
|
447 |
+
|
448 |
+
#: app/Views/settings/settings-posttypes.php:19
|
449 |
+
msgid "Hierarchical"
|
450 |
+
msgstr "Hierárquico"
|
451 |
+
|
452 |
+
#: app/Views/settings/settings-general.php:72
|
453 |
+
msgid "Admins always have sorting ability."
|
454 |
+
msgstr "Admins sempre tem a habilidade de ordenação."
|
455 |
+
|
456 |
+
#: app/Views/settings/settings-general.php:62
|
457 |
+
msgid "Allow Page Sorting"
|
458 |
+
msgstr "Permitir Ordenação de Páginas"
|
459 |
+
|
460 |
+
#: app/Views/settings/settings-general.php:56
|
461 |
+
msgid "Disable menu sync completely"
|
462 |
+
msgstr "Desabilitar sincronização de menu completamente"
|
463 |
+
|
464 |
+
#: app/Views/settings/settings-general.php:37
|
465 |
+
msgid "Hide Menu Sync Checkbox"
|
466 |
+
msgstr "Ocultar o CheckBox de Sincronização de Menu"
|
467 |
+
|
468 |
+
#: app/Views/settings/settings-general.php:31
|
469 |
+
msgid "Menu Sync"
|
470 |
+
msgstr "Sincronização de Menu"
|
471 |
+
|
472 |
+
#: app/Views/settings/settings-general.php:26
|
473 |
+
msgid "Enable Date Picker in Quick Edit"
|
474 |
+
msgstr "Habilitar seletor de datas na edição rápida"
|
475 |
+
|
476 |
+
#: app/Views/settings/settings-general.php:22
|
477 |
+
msgid "Display Options"
|
478 |
+
msgstr "Opções de Visualização"
|
479 |
+
|
480 |
+
#: app/Views/settings/settings-general.php:17
|
481 |
+
msgid "Important: Once the menu name has changed, theme files should be updated to reference the new name."
|
482 |
+
msgstr "Importante: Assim que o nome do menu for alterado, os arquivos do tema deveram ser atualizados para fazer referência ao novo nome."
|
483 |
+
|
484 |
+
#: app/Views/settings/settings-general.php:14
|
485 |
+
msgid "Menu Name"
|
486 |
+
msgstr "Nome no Menu"
|
487 |
+
|
488 |
+
#: app/Views/settings/settings-general.php:9
|
489 |
+
msgid "Nested Pages Version"
|
490 |
+
msgstr "Versão do Nested Pages"
|
491 |
+
|
492 |
+
#: app/Views/settings/settings-general.php:4
|
493 |
+
msgid "Currently Disabled"
|
494 |
+
msgstr "Atualmente Desabilitado"
|
495 |
+
|
496 |
+
#: app/Views/settings/settings-general.php:4
|
497 |
+
msgid "Currently Enabled"
|
498 |
+
msgstr "Atualmente Habilitado"
|
499 |
+
|
500 |
+
#: app/Views/partials/tool-list.php:164
|
501 |
+
msgid "All "
|
502 |
+
msgstr "Todas"
|
503 |
+
|
504 |
+
#: app/Views/partials/tool-list.php:112
|
505 |
+
#: app/Views/settings/settings-posttypes.php:292
|
506 |
+
msgid "Descending"
|
507 |
+
msgstr "Descendente"
|
508 |
+
|
509 |
+
#: app/Views/partials/tool-list.php:111
|
510 |
+
#: app/Views/settings/settings-posttypes.php:291
|
511 |
+
msgid "Ascending"
|
512 |
+
msgstr "Ascendente"
|
513 |
+
|
514 |
+
#: app/Views/partials/tool-list.php:90
|
515 |
+
#: app/Views/settings/settings-posttypes.php:261
|
516 |
+
msgid "Order By"
|
517 |
+
msgstr "Ordenar Por"
|
518 |
+
|
519 |
+
#: app/Views/partials/tool-list.php:86
|
520 |
+
msgid "Menu Order"
|
521 |
+
msgstr "Ordem do Menu"
|
522 |
+
|
523 |
+
#: app/Views/partials/tool-list.php:65
|
524 |
+
msgid "All Authors"
|
525 |
+
msgstr "Todos os Autores"
|
526 |
+
|
527 |
+
#: app/Views/partials/tool-list.php:38
|
528 |
+
msgid "Empty"
|
529 |
+
msgstr "Esvaziar"
|
530 |
+
|
531 |
+
#: app/Views/partials/tool-list.php:37
|
532 |
+
msgid "Trash"
|
533 |
+
msgstr "Lixo"
|
534 |
+
|
535 |
+
#: app/Views/partials/tool-list.php:14
|
536 |
+
msgid "All"
|
537 |
+
msgstr "Todos"
|
538 |
+
|
539 |
+
#: app/Activation/Dependencies.php:149 app/Views/partials/list-header.php:15
|
540 |
+
#: app/Views/partials/row.php:70
|
541 |
+
msgid "Edit"
|
542 |
+
msgstr "Editar"
|
543 |
+
|
544 |
+
#: app/Views/partials/row.php:64
|
545 |
+
msgid "currently editing"
|
546 |
+
msgstr "editando atualmente"
|
547 |
+
|
548 |
+
#: app/Views/partials/row.php:32
|
549 |
+
msgid "Posts Page"
|
550 |
+
msgstr "Página de Posts"
|
551 |
+
|
552 |
+
#: app/Views/partials/row.php:31
|
553 |
+
msgid "Front Page"
|
554 |
+
msgstr "Página Inicial"
|
555 |
+
|
556 |
+
#: app/Views/listing.php:54 app/Views/listing.php:59
|
557 |
+
msgid "Sync Menu"
|
558 |
+
msgstr "Sincronizar Menu"
|
559 |
+
|
560 |
+
#: app/Config/SettingsRepository.php:100 app/Views/forms/quickedit-post.php:163
|
561 |
+
msgid "Taxonomies"
|
562 |
+
msgstr "Taxonomias"
|
563 |
+
|
564 |
+
#: app/Config/SettingsRepository.php:89 app/Views/forms/quickedit-post.php:159
|
565 |
+
msgid "Menu Options"
|
566 |
+
msgstr "Opções do Menu"
|
567 |
+
|
568 |
+
#: app/Config/SettingsRepository.php:84 app/Views/forms/quickedit-post.php:134
|
569 |
+
msgid "Allow Comments"
|
570 |
+
msgstr "Permitir Comentários"
|
571 |
+
|
572 |
+
#: app/Views/forms/quickedit-post.php:124 app/Views/partials/bulk-edit.php:50
|
573 |
+
msgid "Private"
|
574 |
+
msgstr "Privado"
|
575 |
+
|
576 |
+
#: app/Views/forms/quickedit-post.php:121
|
577 |
+
msgid "–OR–"
|
578 |
+
msgstr "–OU–"
|
579 |
+
|
580 |
+
#: app/Views/forms/quickedit-post.php:118
|
581 |
+
msgid "Password"
|
582 |
+
msgstr "Senha"
|
583 |
+
|
584 |
+
#: app/Views/forms/quickedit-post.php:47
|
585 |
+
msgid "pm"
|
586 |
+
msgstr "pm"
|
587 |
+
|
588 |
+
#: app/Views/forms/quickedit-post.php:46
|
589 |
+
msgid "am"
|
590 |
+
msgstr "am"
|
591 |
+
|
592 |
+
#: app/Views/forms/quickedit-post.php:42
|
593 |
+
msgid "@"
|
594 |
+
msgstr "@"
|
595 |
+
|
596 |
+
#: app/Views/forms/quickedit-post.php:39 app/Views/forms/quickedit-post.php:56
|
597 |
+
#: app/Views/partials/tool-list.php:87
|
598 |
+
#: app/Views/settings/settings-posttypes.php:268
|
599 |
+
msgid "Date"
|
600 |
+
msgstr "Data"
|
601 |
+
|
602 |
+
#: app/Config/SettingsRepository.php:79 app/Views/forms/quickedit-post.php:31
|
603 |
+
msgid "Slug"
|
604 |
+
msgstr "Slug"
|
605 |
+
|
606 |
+
#: app/Views/forms/quickedit-link.php:87 app/Views/forms/quickedit-post.php:248
|
607 |
+
#: app/Views/partials/bulk-edit.php:146
|
608 |
+
msgid "Update"
|
609 |
+
msgstr "Atualizar"
|
610 |
+
|
611 |
+
#: app/Config/SettingsRepository.php:92 app/Views/forms/quickedit-link.php:60
|
612 |
+
#: app/Views/forms/quickedit-post.php:143
|
613 |
+
msgid "Hide in Nested Pages"
|
614 |
+
msgstr "Ocultar no Nested Pages"
|
615 |
+
|
616 |
+
#: app/Views/forms/new-child.php:84 app/Views/forms/quickedit-link.php:54
|
617 |
+
#: app/Views/forms/quickedit-post.php:225 app/Views/partials/bulk-edit.php:108
|
618 |
+
msgid "Hide in Nav Menu"
|
619 |
+
msgstr "Ocultar no Menu de Navegação"
|
620 |
+
|
621 |
+
#: app/Views/forms/quickedit-link.php:48 app/Views/forms/quickedit-post.php:217
|
622 |
+
msgid "CSS Classes"
|
623 |
+
msgstr "Classes CSS"
|
624 |
+
|
625 |
+
#: app/Views/forms/quickedit-link.php:31 app/Views/forms/quickedit-post.php:94
|
626 |
+
msgid "Scheduled"
|
627 |
+
msgstr "Agendado"
|
628 |
+
|
629 |
+
#: app/Views/forms/quickedit-link.php:8
|
630 |
+
#: app/Views/settings/settings-posttypes.php:44
|
631 |
+
msgid "Link"
|
632 |
+
msgstr "Link"
|
633 |
+
|
634 |
+
#: app/Views/forms/new-child.php:108
|
635 |
+
msgid "Add & Edit"
|
636 |
+
msgstr "Adicionar & Editar"
|
637 |
+
|
638 |
+
#: app/Views/forms/new-child.php:74 app/Views/forms/quickedit-post.php:110
|
639 |
+
#: app/Views/partials/bulk-edit.php:61
|
640 |
+
msgid "Default Template"
|
641 |
+
msgstr "Template Padrão"
|
642 |
+
|
643 |
+
#: app/Config/SettingsRepository.php:88 app/Views/forms/new-child.php:72
|
644 |
+
#: app/Views/forms/quickedit-post.php:108 app/Views/partials/bulk-edit.php:58
|
645 |
+
msgid "Template"
|
646 |
+
msgstr "Template"
|
647 |
+
|
648 |
+
#: app/Views/forms/new-child.php:28
|
649 |
+
msgid "+"
|
650 |
+
msgstr "+"
|
651 |
+
|
652 |
+
#: app/Views/forms/link-form.php:94 app/Views/forms/quickedit-link.php:66
|
653 |
+
#: app/Views/forms/quickedit-post.php:231
|
654 |
+
msgid "Open link in a new window/tab"
|
655 |
+
msgstr "Abrir link em uma nova janela/tab"
|
656 |
+
|
657 |
+
#: app/Views/forms/link-form.php:88
|
658 |
+
msgid "CSS Classes (optional)"
|
659 |
+
msgstr "Classes CSS (opcional)"
|
660 |
+
|
661 |
+
#: app/Views/forms/link-form.php:84 app/Views/forms/quickedit-link.php:44
|
662 |
+
#: app/Views/forms/quickedit-post.php:213
|
663 |
+
msgid "Title Attribute"
|
664 |
+
msgstr "Atributo do Título"
|
665 |
+
|
666 |
+
#: app/Views/forms/link-form.php:80 app/Views/forms/quickedit-link.php:17
|
667 |
+
#: app/Views/forms/quickedit-post.php:209
|
668 |
+
msgid "Navigation Label"
|
669 |
+
msgstr "Rótulo de Navegação"
|
670 |
+
|
671 |
+
#: app/Views/forms/link-form.php:76 app/Views/forms/quickedit-link.php:22
|
672 |
+
msgid "URL"
|
673 |
+
msgstr "URL"
|
674 |
+
|
675 |
+
#: app/Views/forms/link-form.php:71
|
676 |
+
msgid "Original"
|
677 |
+
msgstr "Original"
|
678 |
+
|
679 |
+
#: app/Views/forms/link-form.php:66
|
680 |
+
msgid "Select an item"
|
681 |
+
msgstr "Selecione um item"
|
682 |
+
|
683 |
+
#: app/Views/forms/link-form.php:35 app/Views/forms/link-form.php:52
|
684 |
+
msgid "No Results"
|
685 |
+
msgstr "Sem Resultados"
|
686 |
+
|
687 |
+
#: app/Views/forms/link-form.php:28 app/Views/forms/link-form.php:52
|
688 |
+
msgid "Search"
|
689 |
+
msgstr "Procurar"
|
690 |
+
|
691 |
+
#: app/Views/forms/link-form.php:19
|
692 |
+
msgid "Custom Link"
|
693 |
+
msgstr "Link Personalizado"
|
694 |
+
|
695 |
+
#: app/Views/forms/empty-trash-modal.php:11
|
696 |
+
msgid "Empty Trash"
|
697 |
+
msgstr "Esvaziar Lixeira"
|
698 |
+
|
699 |
+
#: app/Activation/Dependencies.php:140
|
700 |
+
#: app/Views/forms/delete-confirmation-modal.php:11
|
701 |
+
msgid "Delete"
|
702 |
+
msgstr "Apagar"
|
703 |
+
|
704 |
+
#: app/Views/forms/clone-form.php:63
|
705 |
+
#: app/Views/forms/delete-confirmation-modal.php:10
|
706 |
+
#: app/Views/forms/empty-trash-modal.php:10 app/Views/forms/link-form.php:109
|
707 |
+
#: app/Views/forms/new-child.php:102 app/Views/forms/quickedit-link.php:84
|
708 |
+
#: app/Views/forms/quickedit-post.php:245 app/Views/partials/bulk-edit.php:143
|
709 |
+
msgid "Cancel"
|
710 |
+
msgstr "Cancelar"
|
711 |
+
|
712 |
+
#: app/Config/SettingsRepository.php:81 app/Views/forms/clone-form.php:51
|
713 |
+
#: app/Views/forms/new-child.php:62 app/Views/forms/quickedit-post.php:79
|
714 |
+
#: app/Views/partials/bulk-edit.php:35
|
715 |
+
#: app/Views/settings/settings-posttypes.php:256
|
716 |
+
msgid "Author"
|
717 |
+
msgstr "Autor"
|
718 |
+
|
719 |
+
#: app/Views/forms/clone-form.php:33 app/Views/forms/new-child.php:40
|
720 |
+
#: app/Views/forms/quickedit-link.php:34 app/Views/forms/quickedit-post.php:97
|
721 |
+
#: app/Views/partials/bulk-edit.php:52 app/Views/partials/tool-list.php:22
|
722 |
+
msgid "Draft"
|
723 |
+
msgstr "Rascunho"
|
724 |
+
|
725 |
+
#: app/Views/forms/clone-form.php:32 app/Views/forms/quickedit-link.php:33
|
726 |
+
#: app/Views/forms/quickedit-post.php:96 app/Views/partials/bulk-edit.php:51
|
727 |
+
msgid "Pending Review"
|
728 |
+
msgstr "Revisão Pendente"
|
729 |
+
|
730 |
+
#: app/Views/forms/clone-form.php:30 app/Views/forms/new-child.php:38
|
731 |
+
#: app/Views/forms/quickedit-link.php:30 app/Views/forms/quickedit-post.php:93
|
732 |
+
#: app/Views/partials/bulk-edit.php:48 app/Views/partials/tool-list.php:18
|
733 |
+
msgid "Published"
|
734 |
+
msgstr "Publicado"
|
735 |
+
|
736 |
+
#: app/Views/forms/clone-form.php:27 app/Views/forms/new-child.php:35
|
737 |
+
#: app/Views/forms/quickedit-link.php:27 app/Views/forms/quickedit-post.php:90
|
738 |
+
#: app/Views/partials/bulk-edit.php:44
|
739 |
+
msgid "Status"
|
740 |
+
msgstr "Status"
|
741 |
+
|
742 |
+
#: app/Views/forms/clone-form.php:15
|
743 |
+
msgid "Number of Copies"
|
744 |
+
msgstr "Número de Cópias"
|
745 |
+
|
746 |
+
#: app/Views/forms/clone-form.php:10 app/Views/forms/clone-form.php:66
|
747 |
+
#: app/Views/partials/row.php:193
|
748 |
+
msgid "Clone"
|
749 |
+
msgstr "Duplicar"
|
750 |
+
|
751 |
+
#: app/Form/Validation/Validation.php:202
|
752 |
+
msgid "Page titles cannot be blank."
|
753 |
+
msgstr "Título da página não pode ficar em branco."
|
754 |
+
|
755 |
+
#: app/Form/Validation/Validation.php:194
|
756 |
+
msgid "Please provide at least one page title."
|
757 |
+
msgstr "Por favor, forneça pelo menos um título de página."
|
758 |
+
|
759 |
+
#: app/Form/Validation/Validation.php:174
|
760 |
+
msgid "A valid parent page was not provided."
|
761 |
+
msgstr "Uma página ascendente não foi informada."
|
762 |
+
|
763 |
+
#: app/Form/Validation/Validation.php:160
|
764 |
+
msgid "Please provide a "
|
765 |
+
msgstr "Por favor, forneça um"
|
766 |
+
|
767 |
+
#: app/Form/Listeners/NewMenuItem.php:27 app/Form/Validation/Validation.php:150
|
768 |
+
msgid "Please provide a valid URL."
|
769 |
+
msgstr "por favor, forneça uma URL válida."
|
770 |
+
|
771 |
+
#: app/Form/Validation/Validation.php:147
|
772 |
+
msgid "Please provide a menu title."
|
773 |
+
msgstr "Por favor, forneça um título para o menu."
|
774 |
+
|
775 |
+
#: app/Form/Validation/Validation.php:136
|
776 |
+
msgid "Please provide a valid date."
|
777 |
+
msgstr "Por favor, forneça uma data válida."
|
778 |
+
|
779 |
+
#: app/Form/Listeners/SyncMenu.php:24
|
780 |
+
msgid "Menu sync disabled."
|
781 |
+
msgstr "Sincronização com menu desabilitada."
|
782 |
+
|
783 |
+
#: app/Form/Listeners/SyncMenu.php:34
|
784 |
+
msgid "Menu sync enabled."
|
785 |
+
msgstr "Sincronização com menu habilitada."
|
786 |
+
|
787 |
+
#: app/Form/Listeners/Sort.php:32
|
788 |
+
msgid "There was an error updating the page order."
|
789 |
+
msgstr "Houve um erro ao atualizar da ordem das páginas."
|
790 |
+
|
791 |
+
#: app/Form/Listeners/Sort.php:30
|
792 |
+
msgid "Page order successfully updated."
|
793 |
+
msgstr "Ordem das páginas atualizada com sucesso."
|
794 |
+
|
795 |
+
#: app/Form/Listeners/QuickEdit.php:31
|
796 |
+
msgid "Post successfully updated."
|
797 |
+
msgstr "Post atualizado com sucesso."
|
798 |
+
|
799 |
+
#: app/Form/Listeners/NewMenuItem.php:46
|
800 |
+
#: app/Form/Listeners/QuickEditLink.php:28
|
801 |
+
msgid "Link successfully updated."
|
802 |
+
msgstr "Link atualizado com sucesso."
|
803 |
+
|
804 |
+
#: app/Form/Listeners/NewMenuItem.php:26
|
805 |
+
msgid "Custom Links must have a label."
|
806 |
+
msgstr "Links personalizados devem ter um rótulo."
|
807 |
+
|
808 |
+
#: app/Form/Listeners/EmptyTrash.php:17
|
809 |
+
msgid "Trash successfully emptied."
|
810 |
+
msgstr "Lixeira esvaziada com sucesso."
|
811 |
+
|
812 |
+
#: app/Form/Listeners/ClonePost.php:35
|
813 |
+
#: app/Form/Listeners/WpmlTranslations.php:47
|
814 |
+
msgid "Post Not Found"
|
815 |
+
msgstr "Post Não Encontrado"
|
816 |
+
|
817 |
+
#: app/Form/Listeners/BaseHandler.php:130
|
818 |
+
msgid "There was an error updating the page."
|
819 |
+
msgstr "Houve um erro ao atualizar a página."
|
820 |
+
|
821 |
+
#: app/Form/Listeners/BaseHandler.php:94
|
822 |
+
msgid "Incorrect Form Field"
|
823 |
+
msgstr "Campo de Formulário Incorreto"
|
824 |
+
|
825 |
+
#: app/Entities/PostType/RegisterPostTypes.php:30
|
826 |
+
msgid "Redirect"
|
827 |
+
msgstr "Redirecionar após login"
|
828 |
+
|
829 |
+
#: app/Entities/PostType/RegisterPostTypes.php:29
|
830 |
+
msgid "Redirects"
|
831 |
+
msgstr "Redirecionamentos"
|
832 |
+
|
833 |
+
#: app/Entities/PostType/PostTypeRepository.php:391
|
834 |
+
msgid "Sort View"
|
835 |
+
msgstr "Ordenar Visualização"
|
836 |
+
|
837 |
+
#: app/Entities/PostType/PostTypeRepository.php:391
|
838 |
+
msgid "Nested View"
|
839 |
+
msgstr "Visualização Aninhada"
|
840 |
+
|
841 |
+
#: app/Entities/Confirmation/TrashRestoredConfirmation.php:13
|
842 |
+
msgid "restored from trash."
|
843 |
+
msgstr "restaurado da Lixeira."
|
844 |
+
|
845 |
+
#: app/Entities/Confirmation/TrashConfirmation.php:33
|
846 |
+
msgid "Undo"
|
847 |
+
msgstr "Desfazer"
|
848 |
+
|
849 |
+
#: app/Entities/Confirmation/TrashConfirmation.php:28
|
850 |
+
#: app/Entities/Confirmation/TrashConfirmation.php:29
|
851 |
+
msgid "moved to the Trash."
|
852 |
+
msgstr "movido para a Lixeira"
|
853 |
+
|
854 |
+
#: app/Entities/Confirmation/LinkDeletedConfirmation.php:11
|
855 |
+
msgid "Link successfully deleted."
|
856 |
+
msgstr "Link Removido com Sucesso."
|
857 |
+
|
858 |
+
#: app/Entities/AdminMenu/AdminSubmenu.php:72
|
859 |
+
#: app/Views/partials/tool-list.php:46
|
860 |
+
msgid "Default"
|
861 |
+
msgstr "Padrão"
|
862 |
+
|
863 |
+
#. Plugin Name of the plugin/theme
|
864 |
+
#: app/Config/Settings.php:79
|
865 |
+
msgid "Nested Pages"
|
866 |
+
msgstr "Neste Pages"
|
867 |
+
|
868 |
+
#: app/Config/Settings.php:78 app/Views/settings/settings.php:2
|
869 |
+
msgid "Nested Pages Settings"
|
870 |
+
msgstr "Configurações de Nested Pages"
|
871 |
+
|
872 |
+
#: app/Bootstrap.php:67 app/Views/settings/settings-posttypes.php:22
|
873 |
+
msgid "Settings"
|
874 |
+
msgstr "Configurações"
|
875 |
+
|
876 |
+
#: app/Activation/Dependencies.php:136 app/Views/partials/row-link.php:43
|
877 |
+
#: app/Views/partials/row.php:54
|
878 |
+
msgid "Hidden"
|
879 |
+
msgstr "Ocultos"
|
880 |
+
|
881 |
+
#: app/Views/forms/empty-trash-modal.php:9
|
882 |
+
msgid "Are you sure you would like to empty the trash? This action is not reversable."
|
883 |
+
msgstr "Tem certeza que deseja esvaziar a lixeira? Essa ação não poderá ser desfeita."
|
884 |
+
|
885 |
+
#: app/Activation/Dependencies.php:134 app/Views/listing.php:16
|
886 |
+
#: app/Views/listing.php:17
|
887 |
+
msgid "Add Multiple"
|
888 |
+
msgstr "Adicionar Múltiplos"
|
889 |
+
|
890 |
+
#: app/Activation/Dependencies.php:133
|
891 |
+
msgid "Add Pages"
|
892 |
+
msgstr "Adicionar Páginas"
|
893 |
+
|
894 |
+
#: app/Activation/Dependencies.php:132
|
895 |
+
msgid "Add Page"
|
896 |
+
msgstr "Adicionar Página"
|
897 |
+
|
898 |
+
#: app/Activation/Dependencies.php:131 app/Views/forms/link-form.php:113
|
899 |
+
#: app/Views/forms/new-child.php:105
|
900 |
+
msgid "Add"
|
901 |
+
msgstr "Adicionar"
|
902 |
+
|
903 |
+
#: app/Activation/Dependencies.php:130
|
904 |
+
msgid "Add Child Pages"
|
905 |
+
msgstr "Adicionar Páginas Descendentes"
|
906 |
+
|
907 |
+
#: app/Activation/Dependencies.php:129
|
908 |
+
msgid "Add Child Page"
|
909 |
+
msgstr "Adicionar Página Descendente"
|
910 |
+
|
911 |
+
#: app/Activation/Dependencies.php:128 app/Views/forms/new-child.php:7
|
912 |
+
#: app/Views/partials/row.php:150
|
913 |
+
msgid "Add Child"
|
914 |
+
msgstr "Adicionar Descendente"
|
915 |
+
|
916 |
+
#: app/Activation/Dependencies.php:127 app/Views/partials/row.php:237
|
917 |
+
msgid "View"
|
918 |
+
msgstr "Visualizar"
|
919 |
+
|
920 |
+
#: app/Activation/Dependencies.php:126
|
921 |
+
msgid "Page Title"
|
922 |
+
msgstr "Título da Página"
|
923 |
+
|
924 |
+
#: app/Activation/Dependencies.php:125 app/Views/forms/quickedit-post.php:14
|
925 |
+
#: app/Views/partials/row-link.php:69 app/Views/partials/row.php:232
|
926 |
+
msgid "Quick Edit"
|
927 |
+
msgstr "Edição Rápida"
|
928 |
+
|
929 |
+
#: app/Activation/Dependencies.php:124
|
930 |
+
#: app/Entities/Post/PostUpdateRepository.php:90
|
931 |
+
#: app/Views/forms/new-child.php:19 app/Views/forms/new-child.php:21
|
932 |
+
#: app/Views/forms/quickedit-post.php:24 app/Views/partials/tool-list.php:88
|
933 |
+
#: app/Views/settings/settings-posttypes.php:269
|
934 |
+
msgid "Title"
|
935 |
+
msgstr "Título"
|
936 |
+
|
937 |
+
#: app/Activation/Dependencies.php:123 app/Views/partials/row.php:143
|
938 |
+
msgid "Add Child Link"
|
939 |
+
msgstr "Adicionar Link Descendente"
|
940 |
+
|
941 |
+
#: app/Activation/Dependencies.php:122 app/Views/listing.php:22
|
942 |
+
#: app/Views/listing.php:23
|
943 |
+
msgid "Add Link"
|
944 |
+
msgstr "Adicionar link"
|
945 |
+
|
946 |
+
#: app/Activation/Dependencies.php:121 app/Views/partials/tool-list.php:29
|
947 |
+
msgid "Hide Hidden"
|
948 |
+
msgstr "Ocultar Ocultos"
|
949 |
+
|
950 |
+
#: app/Activation/Dependencies.php:120 app/Views/partials/tool-list.php:27
|
951 |
+
msgid "Show Hidden"
|
952 |
+
msgstr "Mostrar ocultos"
|
953 |
+
|
954 |
+
#: app/Activation/Dependencies.php:119
|
955 |
+
msgid "Collapse All"
|
956 |
+
msgstr "Recolher Todos"
|
957 |
+
|
958 |
+
#: app/Activation/Dependencies.php:118 app/Views/listing.php:29
|
959 |
+
#: app/Views/partials/list-header.php:19
|
960 |
+
msgid "Expand All"
|
961 |
+
msgstr "Expandir Todos"
|
nestedpages.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Nested Pages
|
4 |
Plugin URI: http://nestedpages.com
|
5 |
Description: Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while enhancing quick edit. Includes an auto-generated menu to match the nested interface, support for all post types and more.
|
6 |
-
Version: 3.0.
|
7 |
Author: Kyle Phillips
|
8 |
Author URI: https://github.com/kylephillips
|
9 |
Text Domain: wp-nested-pages
|
3 |
Plugin Name: Nested Pages
|
4 |
Plugin URI: http://nestedpages.com
|
5 |
Description: Provides an intuitive drag and drop interface for managing pages in the Wordpress admin, while enhancing quick edit. Includes an auto-generated menu to match the nested interface, support for all post types and more.
|
6 |
+
Version: 3.0.6
|
7 |
Author: Kyle Phillips
|
8 |
Author URI: https://github.com/kylephillips
|
9 |
Text Domain: wp-nested-pages
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: pages, admin, nested, tree view, page tree, sort, quick edit, structure
|
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable tag: 3.0.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -102,6 +102,9 @@ Nested Pages uses the same ordering methodology as WordPress core. The plugin of
|
|
102 |
|
103 |
== Changelog ==
|
104 |
|
|
|
|
|
|
|
105 |
= 3.0.5 =
|
106 |
* Adds actions for sorting update. Single post: nestedpages_post_order_updated($post_id, $parent, $order). All posts: nestedpages_posts_order_updated($posts, $parent).
|
107 |
* Adds filter to disable sorting per post: nestedpages_post_sortable($sortable, $post, $post_type).
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable tag: 3.0.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
102 |
|
103 |
== Changelog ==
|
104 |
|
105 |
+
= 3.0.6 =
|
106 |
+
* Fixes issue introduced in v3.0.3 where some custom post/page dropdown fields were failing to show.
|
107 |
+
|
108 |
= 3.0.5 =
|
109 |
* Adds actions for sorting update. Single post: nestedpages_post_order_updated($post_id, $parent, $order). All posts: nestedpages_posts_order_updated($posts, $parent).
|
110 |
* Adds filter to disable sorting per post: nestedpages_post_sortable($sortable, $post, $post_type).
|