EstudioJuridicoAlmagro_Web/www/wpv_theme/options/advanced/general.php
david f72df580c3 - Importación inicial
- 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
2013-02-27 15:39:05 +00:00

185 lines
4.1 KiB
PHP

<?php
return array(
array(
'name' => __('General Settings', 'wpv'),
'type' => 'start'
),
array(
'name' => __('Custom logo picture url', 'wpv'),
'desc' => __('Optional way to replace "heading" and "description" text for your website with an image. Leave blank if none required', 'wpv'),
'id' => 'custom-header-logo',
'type' => 'upload',
'static' => true,
),
array(
'name' => __('Copyright text (in footer)', 'wpv'),
'desc' => __("Custom text to appear in the footer", 'wpv'),
'id' => 'credits',
'type' => 'textarea',
'static' => true,
),
array(
'name' => __('Favicon url', 'wpv'),
'desc' => __('Upload your custom "favicon" which is visible in browser favorites and tabs.
(Must be .png or .ico file - 16px by 16px ). Leave blank if none required', 'wpv'),
'id' => 'favicon_url',
'type' => 'upload',
'static' => true,
),
array(
'name' => __('Google Maps API Key', 'wpv'),
'desc' => __("Paste your Google Maps API Key here. If you don't have one, please sign up for a <a href='http://code.google.com/intl/en-US/apis/maps/signup.html'>Google Maps API key</a>.", 'wpv'),
'id' => 'gmap_api_key',
'type' => 'textarea',
'rows' => 2,
'static' => true,
),
array(
'name' => __('Google Analytics Key', 'wpv'),
'desc' => __("Paste your key here. It should be something like UA-XXXXX-X. We're using the faster asynchronous loader, so you don't need to worry about speed :)", 'wpv'),
'id' => 'analytics_key',
'type' => 'text',
'static' => true,
),
array(
'name' => __('Put JavaScript in footer', 'wpv'),
'desc' => __("Having this feature enabled will provide a faster user experience", 'wpv'),
'id' => 'javascript_move_bottom',
'type' => 'toggle',
'static' => true,
),
array(
'name' => __('Custom javascript (in footer)', 'wpv'),
'id' => 'custom_js',
'type' => 'textarea',
'static' => true,
),
array(
'name' => __('Custom css', 'wpv'),
'desc' => __('Quickly add some CSS to your theme by adding it to this block', 'wpv'),
'id' => 'custom_css',
'type' => 'textarea',
'static' => true,
),
array(
'name' => __('Display "scroll to top" button', 'wpv'),
'id' => 'show_scroll_to_top',
'type' => 'toggle',
),
array(
'name' => __('Display feedback button', 'wpv'),
'id' => 'show-feedback',
'type' => 'toggle',
),
array(
'name' => __('Feedback button slides out a sidebar', 'wpv'),
'id' => 'enable-feedback-sidebar',
'type' => 'toggle',
),
array(
'name' => __('Feedback button link', 'wpv'),
'id' => 'feedback-link',
'type' => 'text',
),
array(
'name' => __('RSS Button in top right corner', 'wpv'),
'id' => 'show_rss_button',
'type' => 'toggle',
),
array(
'name' => __('Facebook Icon in top right corner', 'wpv'),
'id' => 'show_fb',
'type' => 'toggle',
),
array(
'name' => __('Facebook link', 'wpv'),
'id' => 'fb-link',
'type' => 'text',
),
array(
'name' => __('Twitter Icon in top right corner', 'wpv'),
'id' => 'show_twitter',
'type' => 'toggle',
),
array(
'name' => __('Twitter link', 'wpv'),
'id' => 'twitter-link',
'type' => 'text',
),
array(
'name' => __('YouTube Icon in top right corner', 'wpv'),
'id' => 'show_youtube',
'type' => 'toggle',
),
array(
'name' => __('YouTube link', 'wpv'),
'id' => 'youtube-link',
'type' => 'text',
),
array(
'name' => __('Flick Icon in top right corner', 'wpv'),
'id' => 'show_flickr',
'type' => 'toggle',
),
array(
'name' => __('Flickr link', 'wpv'),
'id' => 'flickr-link',
'type' => 'text',
),
array(
'name' => __('LinkedIn in top right corner', 'wpv'),
'id' => 'show_linkedin',
'type' => 'toggle',
),
array(
'name' => __('LinkedIn link', 'wpv'),
'id' => 'linkedin-link',
'type' => 'text',
),
array(
'name' => __('Top Menu Phone', 'wpv'),
'id' => 'show-phone-top',
'type' => 'toggle',
),
array(
'name' => __('Phone Number', 'wpv'),
'id' => 'phone-num-top',
'type' => 'textarea',
),
array(
'name' => __('Share icons', 'wpv'),
'desc' => __('Select the social medias you want enabled and for which parts of the website', 'wpv'),
'type' => 'social',
),
array(
'type' => 'end'
)
);