- 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
31 lines
779 B
PHP
31 lines
779 B
PHP
<?php
|
|
|
|
return array(
|
|
array(
|
|
'name' => __('Save/Import Skin', 'wpv'),
|
|
'type' => 'start',
|
|
),
|
|
|
|
array(
|
|
'name' => sprintf(__('Last active skin: %s', 'wpv'), wpv_get_option('last-active-skin')),
|
|
'type' => 'separator',
|
|
),
|
|
|
|
array(
|
|
'name' => __('Save current skin', 'wpv'),
|
|
'desc' => __('If you use the same name as a previously saved skin it will overwrite the latter.', 'wpv'),
|
|
'type' => 'config-export',
|
|
'prefix' => 'theme',
|
|
),
|
|
array(
|
|
'name' => __('Import saved skin', 'wpv'),
|
|
'desc' => __('If you have made changes on the active skin, please save it before activating another skin. Otherwise you will lose these changes.', 'wpv'),
|
|
'type' => 'config-import',
|
|
'prefix' => 'theme',
|
|
),
|
|
|
|
array(
|
|
'type' => 'end',
|
|
),
|
|
);
|