From c3677e925b643decb3b47c0e3449c0977996a812 Mon Sep 17 00:00:00 2001 From: Diego Rojas Date: Sun, 17 Sep 2017 07:28:34 -0300 Subject: [PATCH] re adding dashboard page for theme --- assets/css/admin.css | 23 --- functions.php | 97 +----------- inc/dashboard.php | 17 +- languages/en_US.pot | 19 ++- languages/pt_BR.mo | Bin 27715 -> 23198 bytes languages/pt_BR.po | 362 ++++++++++++++++++++----------------------- 6 files changed, 184 insertions(+), 334 deletions(-) diff --git a/assets/css/admin.css b/assets/css/admin.css index 0783a41..6cde9ee 100644 --- a/assets/css/admin.css +++ b/assets/css/admin.css @@ -1,29 +1,6 @@ /*-------------------------------------------------------------- THEME DASHBOARD --------------------------------------------------------------*/ -.famethemes-badge { - position: absolute; - right: 0; - top: 0; - background-color: #0073aa; - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFUAAABVCAYAAAA49ahaAAAAAXNSR0IArs4c6QAAAYpJREFUeAHt2jGKA0EUxFCP8f2vPDM4VKyCDuSsEmHefifNXvf7+fRRBb5qrdhfINTBIYQa6kBgkOxSQx0IDJJdaqgDgUGySw11IDBIdqmhDgQGyS411IHAINmlhjoQGCR/RvN6P0bnhIbxaN/Pf/CXDDXUgcAg2aWGOhAYJLvUUAcCg2SXGupAYJDsUkMdCAySXWqoA4FBsksNdSAwSHapA1Tlkdr4XsbjsPE9jEaXaiiiESpAjBmqoYhGqAAxZqiGIhqhAsSYoRqKaIQKEGOGaiiiESpAjBmqoYhGqAAxZqiGIhqhAsSYoRqKaIQKEGMe80h9yn9jG4/lXapxmmiEChBjhmooohEqQIwZqqGIRqgAMWaohiIaoQLEmKEaimiEChBjhmooohEqQIwZqqGIRqgAMWaohiIaoQLEmMc8UhuPwwaI0ehSDUU0QgWIMUM1FNEIFSDGDNVQRCNUgBgzVEMRjVABYsxQDUU0QgWIMUM1FNEIFSDGDNVQRCNUgBgzVEMRjVABYswHs34UpggOW5wAAAAASUVORK5CYII=') !important; - background-position: no-repeat scroll center 24px; - background-repeat: no-repeat; - background-size: 85px 85px; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); - color: #78c8e6; - display: inline-block; - font-size: 14px; - font-weight: 600; - height: 40px; - margin: 5px 0 0; - padding-top: 120px; - text-align: center; - text-rendering: optimizelegibility; - width: 150px; - text-decoration: none; -} - .theme_info_wrapper p span { margin-left: 30px; } diff --git a/functions.php b/functions.php index ff9ce81..3cef617 100644 --- a/functions.php +++ b/functions.php @@ -283,96 +283,6 @@ function coletivo_admin_scripts( $hook ) { endif; add_action( 'admin_enqueue_scripts', 'coletivo_admin_scripts' ); - -if ( ! function_exists( 'coletivo_register_required_plugins' ) ) : - /** - * Register the required plugins for this theme. - * - * In this example, we register five plugins: - * - one included with the TGMPA library - * - two from an external source, one from an arbitrary source, one from a GitHub repository - * - two from the .org repo, where one demonstrates the use of the `is_callable` argument - * - * The variable passed to tgmpa_register_plugins() should be an array of plugin - * arrays. - * - * This function is hooked into tgmpa_init, which is fired within the - * TGM_Plugin_Activation class constructor. - */ - function coletivo_register_required_plugins() { - /* - * Array of plugin arrays. Required keys are name and slug. - * If the source is NOT from the .org repo, then source is also required. - */ - $plugins = array( - array( - 'name' => 'Contact Form 7', // The plugin name. - 'slug' => 'contact-form-7', // The plugin slug (typically the folder name). - 'source' => '', // The plugin source. - 'required' => false, // If false, the plugin is only 'recommended' instead of required. - 'version' => '4.2', // E.g. 1.0.0. If set, the active plugin must be this version or higher. - 'force_activation' => true, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. - 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. - 'external_url' => '', // If set, overrides default API URL and points to an external URL. - ), - ); - - /* - * Array of configuration settings. Amend each line as needed. - * - * TGMPA will start providing localized text strings soon. If you already have translations of our standard - * strings available, please help us make TGMPA even better by giving us access to these translations or by - * sending in a pull-request with .po file(s) with the translations. - * - * Only uncomment the strings in the config array if you want to customize the strings. - */ - $config = array( - 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. - 'default_path' => '', // Default absolute path to bundled plugins. - 'menu' => 'tgmpa-install-plugins', // Menu slug. - 'parent_slug' => 'themes.php', // Parent menu slug. - 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. - 'has_notices' => false, // Show admin notices or not. - 'dismissable' => true, // If false, a user cannot dismiss the nag message. - 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. - 'is_automatic' => true, // Automatically activate plugins after installation or not. - 'message' => '', // Message to output right before the plugins table. - - 'strings' => array( - 'page_title' => esc_html__( 'Install Required Plugins', 'coletivo' ), - 'menu_title' => esc_html__( 'Install Plugins', 'coletivo' ), - 'installing' => esc_html__( 'Installing Plugin: %s', 'coletivo' ), // %s = plugin name. - 'oops' => esc_html__( 'Something went wrong with the plugin API.', 'coletivo' ), - 'notice_can_install_required' => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'coletivo' ), // %1$s = plugin name(s). - 'notice_can_install_recommended' => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'coletivo' ), // %1$s = plugin name(s). - 'notice_cannot_install' => _n_noop( 'Sorry, but you do not have the correct permissions to install the %1$s plugin.', 'Sorry, but you do not have the correct permissions to install the %1$s plugins.', 'coletivo' ), // %1$s = plugin name(s). - 'notice_ask_to_update' => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'coletivo' ), // %1$s = plugin name(s). - 'notice_ask_to_update_maybe' => _n_noop( 'There is an update available for: %1$s.', 'There are updates available for the following plugins: %1$s.', 'coletivo' ), // %1$s = plugin name(s). - 'notice_cannot_update' => _n_noop( 'Sorry, but you do not have the correct permissions to update the %1$s plugin.', 'Sorry, but you do not have the correct permissions to update the %1$s plugins.', 'coletivo' ), // %1$s = plugin name(s). - 'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'coletivo' ), // %1$s = plugin name(s). - 'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'coletivo' ), // %1$s = plugin name(s). - 'notice_cannot_activate' => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %1$s plugin.', 'Sorry, but you do not have the correct permissions to activate the %1$s plugins.', 'coletivo' ), // %1$s = plugin name(s). - 'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'coletivo' ), - 'update_link' => _n_noop( 'Begin updating plugin', 'Begin updating plugins', 'coletivo' ), - 'activate_link' => _n_noop( 'Begin activating plugin', 'Begin activating plugins', 'coletivo' ), - 'return' => esc_html__( 'Return to Required Plugins Installer', 'coletivo' ), - 'plugin_activated' => esc_html__( 'Plugin activated successfully.', 'coletivo' ), - 'activated_successfully' => esc_html__( 'The following plugin was activated successfully:', 'coletivo' ), - 'plugin_already_active' => esc_html__( 'No action taken. Plugin %1$s was already active.', 'coletivo' ), // %1$s = plugin name(s). - 'plugin_needs_higher_version' => esc_html__( 'Plugin not activated. A higher version of %s is needed for this theme. Please update the plugin.', 'coletivo' ), // %1$s = plugin name(s). - 'complete' => esc_html__( 'All plugins installed and activated successfully. %1$s', 'coletivo' ), // %s = dashboard link. - 'contact_admin' => esc_html__( 'Please contact the administrator of this site for help.', 'coletivo' ), - 'nag_type' => 'updated', // Determines admin notice type - can only be 'updated', 'update-nag' or 'error'. - ), - - ); - - tgmpa( $plugins, $config ); - } - -endif; -add_action( 'tgmpa_register', 'coletivo_register_required_plugins' ); - /** * Custom template tags for this theme. */ @@ -393,12 +303,7 @@ function coletivo_register_required_plugins() { */ require get_template_directory() . '/inc/customizer-update-fields.php'; -/** - * Load TGM class plugin activation. - */ -// require get_template_directory() . '/inc/tgm-plugin-activation.php'; - /** * Add theme info page */ -// require get_template_directory() . '/inc/dashboard.php'; +require get_template_directory() . '/inc/dashboard.php'; diff --git a/inc/dashboard.php b/inc/dashboard.php index fad65f8..c71edaf 100644 --- a/inc/dashboard.php +++ b/inc/dashboard.php @@ -5,7 +5,6 @@ add_action('admin_menu', 'coletivo_theme_info'); function coletivo_theme_info() { - //$theme_data = wp_get_theme('coletivo'); $actions = coletivo_get_actions_required(); $n = array_count_values( $actions ); @@ -63,7 +62,7 @@ function coletivo_one_activation_admin_notice(){ function coletivo_theme_info_page() { - $theme_data = wp_get_theme('coletivo'); + $theme_data = wp_get_theme(); if ( isset( $_GET['coletivo_action_dismiss'] ) ) { $actions_dismiss = get_option( 'coletivo_actions_dismiss' ); @@ -93,7 +92,7 @@ function coletivo_theme_info_page() {

Version ); ?>

- #RedeLivre + ColetivoWP

Name); ?>

- +

-
diff --git a/languages/en_US.pot b/languages/en_US.pot index 84b6beb..bd98107 100644 --- a/languages/en_US.pot +++ b/languages/en_US.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Tema Coletivo\n" -"POT-Creation-Date: 2017-09-12 01:02-0300\n" +"POT-Creation-Date: 2017-09-17 07:26-0300\n" "PO-Revision-Date: 2016-11-09 16:07-0200\n" "Last-Translator: Diego Rojas \n" "Language-Team: Diego Rojas \n" @@ -1482,7 +1482,7 @@ msgstr "" #: inc/dashboard.php:112 #, fuzzy msgid "Start Customize" -msgstr "iniciar customização" +msgstr "iniciar Personalizar" #: inc/dashboard.php:116 #, fuzzy @@ -1496,12 +1496,12 @@ msgid "" "documentations instructions." msgstr "" "Precisa de alguma ajuda para configurar %s? Por favor dê uma olhada nas " -"instruções de nossa documentãção." +"instruções de nossa documentação." #: inc/dashboard.php:119 #, fuzzy msgid "Coletivo Documentation" -msgstr "Documentação do OndePress" +msgstr "Documentação do Coletivo" #: inc/dashboard.php:124 #, fuzzy @@ -1511,11 +1511,14 @@ msgstr "Está com problemas, precisa de suporte?" #: inc/dashboard.php:125 #, fuzzy, php-format msgid "" -"Support for %s WordPress theme is conducted through FameThemes support " -"ticket system." +"Support for %s is conducted through the WordPress oficial repository support." msgstr "" -"Suporte para o %s será feito diretamente nos repositório oficial do " -"WordPress." +"Suporte para o %s será feito diretamente no repositório oficial do WordPress." + +#: inc/dashboard.php:126 +#, fuzzy +msgid "Ask for support" +msgstr "Peça por Suporte" #: inc/dashboard.php:145 inc/dashboard.php:158 #, fuzzy diff --git a/languages/pt_BR.mo b/languages/pt_BR.mo index c3ff60ee7da322bd278b36c72d3e2108449b14b5..f286a1f8a84979fc4f536bc1992fa50ceac949cd 100644 GIT binary patch delta 6835 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 Y_2-VC=khI{c-r^*qyqoN$zy{53)5fqoB#j- delta 11321 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 F`hN~n4Tk^# diff --git a/languages/pt_BR.po b/languages/pt_BR.po index d42d37c..888dbac 100644 --- a/languages/pt_BR.po +++ b/languages/pt_BR.po @@ -2,15 +2,15 @@ msgid "" msgstr "" "Project-Id-Version: Tema Coletivo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-09-14 13:51-0300\n" -"PO-Revision-Date: 2017-09-14 13:56-0300\n" -"Last-Translator: Celso Bessa - 2Aces \n" +"POT-Creation-Date: 2017-09-17 07:26-0300\n" +"PO-Revision-Date: 2017-09-17 07:26-0300\n" +"Last-Translator: Diego Rojas \n" "Language-Team: Portuguese (Brazil)\n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.3\n" +"X-Generator: Poedit 1.8.7.1\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-KeywordsList: __;_e;_n;_n:1,2;_n_noop:1,2;_x;_ex;_nx;_nx:1,2;" @@ -94,160 +94,6 @@ msgstr "Barra Lateral do modelo With Sidebar" msgid "on" msgstr "em" -#: functions.php:342 -msgid "Install Required Plugins" -msgstr "Instale os plugins requeridos" - -#: functions.php:343 -msgid "Install Plugins" -msgstr "Instale Plugins" - -#: functions.php:344 -#, php-format -msgid "Installing Plugin: %s" -msgstr "Instalando Plugin: %s" - -#: functions.php:345 -msgid "Something went wrong with the plugin API." -msgstr "Alguma coisa aconteceu errado na instalação da API do plugin." - -#: functions.php:346 -#, php-format -msgid "This theme requires the following plugin: %1$s." -msgid_plural "This theme requires the following plugins: %1$s." -msgstr[0] "Este tema necessita do seguinte plugin: %1$s." -msgstr[1] "Este tema necessita dos seguintes plugins: %1$s." - -#: functions.php:347 -#, php-format -msgid "This theme recommends the following plugin: %1$s." -msgid_plural "This theme recommends the following plugins: %1$s." -msgstr[0] "Este tema recomenda os seguinte plugin: %1$s." -msgstr[1] "Este tema recomenda os seguintes plugins: %1$s." - -#: functions.php:348 -#, php-format -msgid "" -"Sorry, but you do not have the correct permissions to install the %1$s " -"plugin." -msgid_plural "" -"Sorry, but you do not have the correct permissions to install the %1$s " -"plugins." -msgstr[0] "Me desculpe mas você não tem permissão para instalar o plugin %1$s." -msgstr[1] "" -"Me desculpe mas você não tem permissão para instalar os plugins %1$s." - -#: functions.php:349 -#, php-format -msgid "" -"The following plugin needs to be updated to its latest version to ensure " -"maximum compatibility with this theme: %1$s." -msgid_plural "" -"The following plugins need to be updated to their latest version to ensure " -"maximum compatibility with this theme: %1$s." -msgstr[0] "" -"O seguinte plugin necessita atualização para garantir máxima compatibilidade " -"com esse tema: %1$s." -msgstr[1] "" -"Os seguintes plugins necessitam atualização para garantir máxima " -"compatibilidade com esse tema: %1$s." - -#: functions.php:350 -#, php-format -msgid "There is an update available for: %1$s." -msgid_plural "There are updates available for the following plugins: %1$s." -msgstr[0] "Existe atualizações disponíveis para os seguintes plugins: %1$s." -msgstr[1] "Existe uma atualização disponível para: %1$s." - -#: functions.php:351 -#, php-format -msgid "" -"Sorry, but you do not have the correct permissions to update the %1$s plugin." -msgid_plural "" -"Sorry, but you do not have the correct permissions to update the %1$s " -"plugins." -msgstr[0] "Me desculpe, você não tem permissão para atualizar o plugin: %1$s." -msgstr[1] "" -"Me desculpe, você não tem permissão para atualizar os plugins: %1$s." - -#: functions.php:352 -#, php-format -msgid "The following required plugin is currently inactive: %1$s." -msgid_plural "The following required plugins are currently inactive: %1$s." -msgstr[0] "O seguinte plugin requerido esta inativo: %1$s." -msgstr[1] "Os seguintes plugins requeridos estão inativos: %1$s." - -#: functions.php:353 -#, php-format -msgid "The following recommended plugin is currently inactive: %1$s." -msgid_plural "The following recommended plugins are currently inactive: %1$s." -msgstr[0] "O seguinte plugin recomendado esta inativo: %1$s." -msgstr[1] "Os seguintes plugins recomendados estão inativos: %1$s." - -#: functions.php:354 -#, php-format -msgid "" -"Sorry, but you do not have the correct permissions to activate the %1$s " -"plugin." -msgid_plural "" -"Sorry, but you do not have the correct permissions to activate the %1$s " -"plugins." -msgstr[0] "Me desculpe, você não tem permissão para ativar o plugin: %1$s." -msgstr[1] "Me desculpe, você não tem permissão para ativar os plugins: %1$s." - -#: functions.php:355 -msgid "Begin installing plugin" -msgid_plural "Begin installing plugins" -msgstr[0] "Começar a instalar o plugin" -msgstr[1] "Começar a instalar os plugins" - -#: functions.php:356 -msgid "Begin updating plugin" -msgid_plural "Begin updating plugins" -msgstr[0] "Começar a atualizar o plugin" -msgstr[1] "Começar a atualizar os plugins" - -#: functions.php:357 -msgid "Begin activating plugin" -msgid_plural "Begin activating plugins" -msgstr[0] "Começar a ativar o plugin" -msgstr[1] "Começar a ativar os plugins" - -#: functions.php:358 -msgid "Return to Required Plugins Installer" -msgstr "Voltar para o instalador de Plugins obrigatórios" - -#: functions.php:359 -msgid "Plugin activated successfully." -msgstr "Plugin ativado corretamente." - -#: functions.php:360 -msgid "The following plugin was activated successfully:" -msgstr "Os seguintes plugins foram ativados com sucesso:" - -#: functions.php:361 -#, php-format -msgid "No action taken. Plugin %1$s was already active." -msgstr "Ação desnecessária. Plugin %1$s já está ativo." - -#: functions.php:362 -#, php-format -msgid "" -"Plugin not activated. A higher version of %s is needed for this theme. " -"Please update the plugin." -msgstr "" -"Plugin não ativado. Uma versão mais atual de %s é necessária para esse tema. " -"Por favor atualize o plugin." - -#: functions.php:363 -#, php-format -msgid "All plugins installed and activated successfully. %1$s" -msgstr "Todos os plugins instalados e ativados com sucesso. %1$s" - -#: functions.php:364 -msgid "Please contact the administrator of this site for help." -msgstr "Por favor contate o administrador do site para obter ajuda." - #: header.php:25 msgid "Skip to content" msgstr "Ir para o conteúdo" @@ -1249,27 +1095,27 @@ msgstr "Pesquise" msgid "Font Awesome" msgstr "Fonte Awesome" -#: inc/dashboard.php:18 +#: inc/dashboard.php:17 #, php-format msgid "%1$s action required" msgid_plural "%1$s actions required" msgstr[0] "%1$s ação requerida" msgstr[1] "%1$s ações requeridas" -#: inc/dashboard.php:20 +#: inc/dashboard.php:19 #, php-format msgid "Coletivo Theme %s" msgstr "Tema Coletivo %s" -#: inc/dashboard.php:22 +#: inc/dashboard.php:21 msgid "Coletivo Theme" msgstr "Tema Coletivo" -#: inc/dashboard.php:25 +#: inc/dashboard.php:24 msgid "Coletivo Dashboard" msgstr "Painel de Controle Tema Coletivo" -#: inc/dashboard.php:48 +#: inc/dashboard.php:47 #, php-format msgid "" "Welcome! Thank you for choosing %1$s! To fully take advantage of the best " @@ -1280,12 +1126,12 @@ msgstr "" "está usando as melhores vantagens que seu tema pode oferecer visita a Página de boas-vindas" -#: inc/dashboard.php:94 +#: inc/dashboard.php:93 #, php-format msgid "Welcome to Coletivo - Version %1s" msgstr "Bem Vindo ao Tema Coletivo - Versão %1s" -#: inc/dashboard.php:95 +#: inc/dashboard.php:94 msgid "" "Coletivo is a creative and flexible WordPress theme well suited for " "business, social projects, portfolio, digital agency, product showcase, " @@ -1295,19 +1141,19 @@ msgstr "" "negócios, portfolios, agencias digitais, demonstração de produtos e " "freelancers." -#: inc/dashboard.php:98 +#: inc/dashboard.php:97 msgid "Coletivo" msgstr "Coletivo" -#: inc/dashboard.php:99 +#: inc/dashboard.php:98 msgid "Actions Required" msgstr "Ações necessárias" -#: inc/dashboard.php:109 +#: inc/dashboard.php:108 msgid "Theme Customizer" msgstr "Customizador de temas" -#: inc/dashboard.php:110 +#: inc/dashboard.php:109 #, php-format msgid "" "%s supports the Theme Customizer for all theme settings. Click \"Customize\" " @@ -1316,49 +1162,36 @@ msgstr "" "%s suporta o Customizer para todas as suas configurações. Clique em " "\"Personalizar\" para começar a fazer seu site." -#: inc/dashboard.php:112 +#: inc/dashboard.php:111 msgid "Start Customize" -msgstr "Iniciar customização" +msgstr "Iniciar Personalizar" -#: inc/dashboard.php:116 +#: inc/dashboard.php:115 msgid "Theme Documentation" msgstr "Documentação do tema" -#: inc/dashboard.php:117 +#: inc/dashboard.php:116 #, php-format msgid "" "Need any help to setup and configure %s? Please have a look at our " "documentations instructions." msgstr "" "Precisa de alguma ajuda para configurar %s? Por favor dê uma olhada nas " -"instruções de nossa documentãção." +"instruções de nossa documentação." -#: inc/dashboard.php:119 +#: inc/dashboard.php:118 msgid "Coletivo Documentation" -msgstr "Documentação do OndePress" - -#: inc/dashboard.php:124 -msgid "Having Trouble, Need Support?" -msgstr "Está com problemas, precisa de suporte?" - -#: inc/dashboard.php:125 -#, php-format -msgid "" -"Support for %s WordPress theme is conducted through FameThemes support " -"ticket system." -msgstr "" -"Suporte para o %s será feito diretamente nos repositório oficial do " -"WordPress." +msgstr "Documentação do Coletivo" -#: inc/dashboard.php:145 inc/dashboard.php:158 +#: inc/dashboard.php:144 inc/dashboard.php:157 msgid "Dismiss" msgstr "Descarte" -#: inc/dashboard.php:146 +#: inc/dashboard.php:145 msgid "Switch \"Front page displays\" to \"A static page\"" msgstr "Muda \"Página inicial\" para \"uma página estática\"" -#: inc/dashboard.php:148 +#: inc/dashboard.php:147 msgid "" "In order to have the one page look for your website, please go to Customize -" "> Static Front Page and switch \"Front page displays\" to \"A static page" @@ -1368,15 +1201,15 @@ msgstr "" "de seu site , por favor vá em Customize -> Static Front Page and switch " "\"Front page displays\" to \"A static page\"." -#: inc/dashboard.php:151 inc/dashboard.php:169 +#: inc/dashboard.php:150 inc/dashboard.php:168 msgid "Setup front page displays" msgstr "Ajustes" -#: inc/dashboard.php:159 +#: inc/dashboard.php:158 msgid "Set your homepage page template to \"Frontpage\"." msgstr "Configura o modelo da página inicial para \"Frontpage”." -#: inc/dashboard.php:162 +#: inc/dashboard.php:161 msgid "" "In order to change homepage section contents, you will need to set template " "\"Frontpage\" for your homepage." @@ -1384,16 +1217,16 @@ msgstr "" "Para alterar os conteúdos das seções da homepage você precisa configurar " "\"Frontpage\" como o modelo de sua página inicial." -#: inc/dashboard.php:176 +#: inc/dashboard.php:175 msgid "Change homepage page template" msgstr "Mudar modelo da página inicial" -#: inc/dashboard.php:185 +#: inc/dashboard.php:184 #, php-format msgid "Keep update with %s" msgstr "Se mantenha atualizado com %s" -#: inc/dashboard.php:186 +#: inc/dashboard.php:185 msgid "Hooray! There are no required actions for you right now." msgstr "Boa! Não existem mais ações obrigatórias para você nesse momento." @@ -1534,6 +1367,139 @@ msgstr "" "Me parece que você não conseguiu encontrar o que queria. Talvez uma busca " "possa auxiliar." +#~ msgid "Install Required Plugins" +#~ msgstr "Instale os plugins requeridos" + +#~ msgid "Install Plugins" +#~ msgstr "Instale Plugins" + +#~ msgid "Installing Plugin: %s" +#~ msgstr "Instalando Plugin: %s" + +#~ msgid "Something went wrong with the plugin API." +#~ msgstr "Alguma coisa aconteceu errado na instalação da API do plugin." + +#~ msgid "This theme requires the following plugin: %1$s." +#~ msgid_plural "This theme requires the following plugins: %1$s." +#~ msgstr[0] "Este tema necessita do seguinte plugin: %1$s." +#~ msgstr[1] "Este tema necessita dos seguintes plugins: %1$s." + +#~ msgid "This theme recommends the following plugin: %1$s." +#~ msgid_plural "This theme recommends the following plugins: %1$s." +#~ msgstr[0] "Este tema recomenda os seguinte plugin: %1$s." +#~ msgstr[1] "Este tema recomenda os seguintes plugins: %1$s." + +#~ msgid "" +#~ "Sorry, but you do not have the correct permissions to install the %1$s " +#~ "plugin." +#~ msgid_plural "" +#~ "Sorry, but you do not have the correct permissions to install the %1$s " +#~ "plugins." +#~ msgstr[0] "" +#~ "Me desculpe mas você não tem permissão para instalar o plugin %1$s." +#~ msgstr[1] "" +#~ "Me desculpe mas você não tem permissão para instalar os plugins %1$s." + +#~ msgid "" +#~ "The following plugin needs to be updated to its latest version to ensure " +#~ "maximum compatibility with this theme: %1$s." +#~ msgid_plural "" +#~ "The following plugins need to be updated to their latest version to " +#~ "ensure maximum compatibility with this theme: %1$s." +#~ msgstr[0] "" +#~ "O seguinte plugin necessita atualização para garantir máxima " +#~ "compatibilidade com esse tema: %1$s." +#~ msgstr[1] "" +#~ "Os seguintes plugins necessitam atualização para garantir máxima " +#~ "compatibilidade com esse tema: %1$s." + +#~ msgid "There is an update available for: %1$s." +#~ msgid_plural "There are updates available for the following plugins: %1$s." +#~ msgstr[0] "Existe atualizações disponíveis para os seguintes plugins: %1$s." +#~ msgstr[1] "Existe uma atualização disponível para: %1$s." + +#~ msgid "" +#~ "Sorry, but you do not have the correct permissions to update the %1$s " +#~ "plugin." +#~ msgid_plural "" +#~ "Sorry, but you do not have the correct permissions to update the %1$s " +#~ "plugins." +#~ msgstr[0] "" +#~ "Me desculpe, você não tem permissão para atualizar o plugin: %1$s." +#~ msgstr[1] "" +#~ "Me desculpe, você não tem permissão para atualizar os plugins: %1$s." + +#~ msgid "The following required plugin is currently inactive: %1$s." +#~ msgid_plural "The following required plugins are currently inactive: %1$s." +#~ msgstr[0] "O seguinte plugin requerido esta inativo: %1$s." +#~ msgstr[1] "Os seguintes plugins requeridos estão inativos: %1$s." + +#~ msgid "The following recommended plugin is currently inactive: %1$s." +#~ msgid_plural "" +#~ "The following recommended plugins are currently inactive: %1$s." +#~ msgstr[0] "O seguinte plugin recomendado esta inativo: %1$s." +#~ msgstr[1] "Os seguintes plugins recomendados estão inativos: %1$s." + +#~ msgid "" +#~ "Sorry, but you do not have the correct permissions to activate the %1$s " +#~ "plugin." +#~ msgid_plural "" +#~ "Sorry, but you do not have the correct permissions to activate the %1$s " +#~ "plugins." +#~ msgstr[0] "Me desculpe, você não tem permissão para ativar o plugin: %1$s." +#~ msgstr[1] "" +#~ "Me desculpe, você não tem permissão para ativar os plugins: %1$s." + +#~ msgid "Begin installing plugin" +#~ msgid_plural "Begin installing plugins" +#~ msgstr[0] "Começar a instalar o plugin" +#~ msgstr[1] "Começar a instalar os plugins" + +#~ msgid "Begin updating plugin" +#~ msgid_plural "Begin updating plugins" +#~ msgstr[0] "Começar a atualizar o plugin" +#~ msgstr[1] "Começar a atualizar os plugins" + +#~ msgid "Begin activating plugin" +#~ msgid_plural "Begin activating plugins" +#~ msgstr[0] "Começar a ativar o plugin" +#~ msgstr[1] "Começar a ativar os plugins" + +#~ msgid "Return to Required Plugins Installer" +#~ msgstr "Voltar para o instalador de Plugins obrigatórios" + +#~ msgid "Plugin activated successfully." +#~ msgstr "Plugin ativado corretamente." + +#~ msgid "The following plugin was activated successfully:" +#~ msgstr "Os seguintes plugins foram ativados com sucesso:" + +#~ msgid "No action taken. Plugin %1$s was already active." +#~ msgstr "Ação desnecessária. Plugin %1$s já está ativo." + +#~ msgid "" +#~ "Plugin not activated. A higher version of %s is needed for this theme. " +#~ "Please update the plugin." +#~ msgstr "" +#~ "Plugin não ativado. Uma versão mais atual de %s é necessária para esse " +#~ "tema. Por favor atualize o plugin." + +#~ msgid "All plugins installed and activated successfully. %1$s" +#~ msgstr "Todos os plugins instalados e ativados com sucesso. %1$s" + +#~ msgid "Please contact the administrator of this site for help." +#~ msgstr "Por favor contate o administrador do site para obter ajuda." + +#~ msgid "Having Trouble, Need Support?" +#~ msgstr "Está com problemas, precisa de suporte?" + +#~ msgid "" +#~ "Support for %s WordPress theme is conducted through FameThemes support " +#~ "ticket system." +#~ msgstr "" +#~ "Suporte para o %s será feito diretamente nos repositório oficial do " +#~ "WordPress." + #~ msgid "Site Colors" #~ msgstr "Cores do Site"