- Ticket 1166 -> Orden de los idiomas ES FR EN RU git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
28 lines
874 B
PHP
28 lines
874 B
PHP
<?php
|
|
return array(
|
|
|
|
array(
|
|
'name' => __('Quick import', 'wpv'),
|
|
'type' => 'start',
|
|
),
|
|
array(
|
|
'name' => __('Content import', 'wpv'),
|
|
'desc' => __('You are advised to use this importer only on new WordPress sites, as in doing so you will end up with quite a lot of example posts, pages, slides and portfolio items.', 'wpv'),
|
|
'title' => __("Import dummy content"),
|
|
'link' => wp_nonce_url(admin_url('admin.php?import=wpv&step=2&file='.WPV_THEME_SAMPLE_CONTENT), 'wpv-import'),
|
|
'type' => 'button',
|
|
),
|
|
|
|
array(
|
|
'name' => __('Widget import', 'wpv'),
|
|
'desc' => __('Using this importer will overwrite your current sidebar settings', 'wpv'),
|
|
'title' => __("Import widgets"),
|
|
'link' => wp_nonce_url(admin_url('admin.php?import=wpv_widgets&file='.WPV_THEME_SAMPLE_WIDGETS), 'wpv-import'),
|
|
'type' => 'button',
|
|
),
|
|
array(
|
|
'type' => 'end',
|
|
),
|
|
|
|
);
|