mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
Remove core plugins from core repository
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
<?php
|
||||
defined('ADMINTOOLS_PATH') or die('Hacking attempt!');
|
||||
|
||||
if (isset($_POST['save_config']))
|
||||
{
|
||||
$conf['AdminTools'] = array(
|
||||
'default_open' => isset($_POST['default_open']),
|
||||
'closed_position' => $_POST['closed_position'],
|
||||
'public_quick_edit' => isset($_POST['public_quick_edit']),
|
||||
);
|
||||
|
||||
conf_update_param('AdminTools', $conf['AdminTools']);
|
||||
$page['infos'][] = l10n('Information data registered in database');
|
||||
}
|
||||
|
||||
|
||||
$template->assign(array(
|
||||
'AdminTools' => $conf['AdminTools'],
|
||||
));
|
||||
|
||||
|
||||
$template->set_filename('admintools_content', realpath(ADMINTOOLS_PATH . 'template/admin.tpl'));
|
||||
$template->assign_var_from_handle('ADMIN_CONTENT', 'admintools_content');
|
||||
@@ -1,338 +0,0 @@
|
||||
<?php
|
||||
defined('ADMINTOOLS_PATH') or die('Hacking attempt!');
|
||||
|
||||
/**
|
||||
* Class managing multi views system
|
||||
*/
|
||||
class MultiView
|
||||
{
|
||||
/** @var bool $is_admin */
|
||||
private $is_admin = false;
|
||||
|
||||
/** @var array $data */
|
||||
private $data = array();
|
||||
private $data_url_params = array();
|
||||
|
||||
/** @var array $user */
|
||||
private $user = array();
|
||||
|
||||
/**
|
||||
* Constructor, load $data from session
|
||||
*/
|
||||
function __construct()
|
||||
{
|
||||
global $conf;
|
||||
|
||||
$this->data = array_merge(
|
||||
array(
|
||||
'view_as' => 0,
|
||||
'theme' => '',
|
||||
'lang' => '',
|
||||
'show_queries' => $conf['show_queries'],
|
||||
'debug_l10n' => $conf['debug_l10n'],
|
||||
'debug_template' => $conf['debug_template'],
|
||||
'template_combine_files' => $conf['template_combine_files'],
|
||||
'no_history' => false,
|
||||
),
|
||||
pwg_get_session_var('multiview', array())
|
||||
);
|
||||
|
||||
$this->data_url_params = array_keys($this->data);
|
||||
$this->data_url_params = array_map(create_function('$d', 'return "ato_".$d;'), $this->data_url_params);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
*/
|
||||
public function is_admin()
|
||||
{
|
||||
return $this->is_admin;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function get_data()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function get_user()
|
||||
{
|
||||
return $this->user;
|
||||
}
|
||||
|
||||
/**
|
||||
* Save $data in session
|
||||
*/
|
||||
private function save()
|
||||
{
|
||||
pwg_set_session_var('multiview', $this->data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the current url minus MultiView params
|
||||
*
|
||||
* @param bool $with_amp - adds ? or & at the end of the url
|
||||
* @return string
|
||||
*/
|
||||
public function get_clean_url($with_amp=false)
|
||||
{
|
||||
if (script_basename() == 'picture')
|
||||
{
|
||||
$url = duplicate_picture_url(array(), $this->data_url_params);
|
||||
}
|
||||
else if (script_basename() == 'index')
|
||||
{
|
||||
$url = duplicate_index_url(array(), $this->data_url_params);
|
||||
}
|
||||
else
|
||||
{
|
||||
$url = get_query_string_diff($this->data_url_params);
|
||||
}
|
||||
|
||||
if ($with_amp)
|
||||
{
|
||||
$url.= strpos($url, '?')!==false ? '&' : '?';
|
||||
}
|
||||
|
||||
return $url;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the current url minus MultiView params
|
||||
*
|
||||
* @param bool $with_amp - adds ? or & at the end of the url
|
||||
* @return string
|
||||
*/
|
||||
public function get_clean_admin_url($with_amp=false)
|
||||
{
|
||||
$url = PHPWG_ROOT_PATH.'admin.php';
|
||||
|
||||
$get = $_GET;
|
||||
unset($get['page'], $get['section'], $get['tag']);
|
||||
if (count($get) == 0 and !empty($_SERVER['QUERY_STRING']))
|
||||
{
|
||||
$url.= '?' . str_replace('&', '&', $_SERVER['QUERY_STRING']);
|
||||
}
|
||||
|
||||
if ($with_amp)
|
||||
{
|
||||
$url.= strpos($url, '?')!==false ? '&' : '?';
|
||||
}
|
||||
|
||||
return $url;
|
||||
}
|
||||
|
||||
/**
|
||||
* Triggered on "user_init", change current view depending of URL params.
|
||||
*/
|
||||
public function user_init()
|
||||
{
|
||||
global $user, $conf;
|
||||
|
||||
$this->is_admin = is_admin();
|
||||
|
||||
$this->user = array(
|
||||
'id' => $user['id'],
|
||||
'username' => $user['username'],
|
||||
'language' => $user['language'],
|
||||
'theme' => $user['theme'],
|
||||
);
|
||||
|
||||
// inactive on ws.php to allow AJAX admin tasks
|
||||
if ($this->is_admin && script_basename() != 'ws')
|
||||
{
|
||||
// show_queries
|
||||
if (isset($_GET['ato_show_queries']))
|
||||
{
|
||||
$this->data['show_queries'] = (bool)$_GET['ato_show_queries'];
|
||||
}
|
||||
$conf['show_queries'] = $this->data['show_queries'];
|
||||
|
||||
if ($this->data['view_as'] == 0)
|
||||
{
|
||||
$this->data['view_as'] = $user['id'];
|
||||
}
|
||||
if (empty($this->data['lang']))
|
||||
{
|
||||
$this->data['lang'] = $user['language'];
|
||||
}
|
||||
if (empty($this->data['theme']))
|
||||
{
|
||||
$this->data['theme'] = $user['theme'];
|
||||
}
|
||||
|
||||
// view_as
|
||||
if (!defined('IN_ADMIN'))
|
||||
{
|
||||
if (isset($_GET['ato_view_as']))
|
||||
{
|
||||
$this->data['view_as'] = (int)$_GET['ato_view_as'];
|
||||
}
|
||||
if ($this->data['view_as'] != $user['id'])
|
||||
{
|
||||
$user = build_user($this->data['view_as'], true);
|
||||
if (isset($_GET['ato_view_as']))
|
||||
{
|
||||
$this->data['theme'] = $user['theme'];
|
||||
$this->data['lang'] = $user['language'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// theme
|
||||
if (isset($_GET['ato_theme']))
|
||||
{
|
||||
$this->data['theme'] = $_GET['ato_theme'];
|
||||
}
|
||||
$user['theme'] = $this->data['theme'];
|
||||
|
||||
// lang
|
||||
if (isset($_GET['ato_lang']))
|
||||
{
|
||||
$this->data['lang'] = $_GET['ato_lang'];
|
||||
}
|
||||
$user['language'] = $this->data['lang'];
|
||||
|
||||
// debug_l10n
|
||||
if (isset($_GET['ato_debug_l10n']))
|
||||
{
|
||||
$this->data['debug_l10n'] = (bool)$_GET['ato_debug_l10n'];
|
||||
}
|
||||
$conf['debug_l10n'] = $this->data['debug_l10n'];
|
||||
|
||||
// debug_template
|
||||
if (isset($_GET['ato_debug_template']))
|
||||
{
|
||||
$this->data['debug_template'] = (bool)$_GET['ato_debug_template'];
|
||||
}
|
||||
$conf['debug_template'] = $this->data['debug_template'];
|
||||
|
||||
// template_combine_files
|
||||
if (isset($_GET['ato_template_combine_files']))
|
||||
{
|
||||
$this->data['template_combine_files'] = (bool)$_GET['ato_template_combine_files'];
|
||||
}
|
||||
$conf['template_combine_files'] = $this->data['template_combine_files'];
|
||||
|
||||
// no_history
|
||||
if (isset($_GET['ato_no_history']))
|
||||
{
|
||||
$this->data['no_history'] = (bool)$_GET['ato_no_history'];
|
||||
}
|
||||
if ($this->data['no_history'])
|
||||
{
|
||||
add_event_handler('pwg_log_allowed', create_function('', 'return false;'));
|
||||
}
|
||||
|
||||
$this->save();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the language of the current user if different from the current language
|
||||
* false otherwise
|
||||
*/
|
||||
function get_user_language()
|
||||
{
|
||||
if (isset($this->user['language']) && isset($this->data['lang'])
|
||||
&& $this->user['language'] != $this->data['lang']
|
||||
)
|
||||
{
|
||||
return $this->user['language'];
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Triggered on "init", in order to clean template files (not initialized on "user_init")
|
||||
*/
|
||||
public function init()
|
||||
{
|
||||
if ($this->is_admin)
|
||||
{
|
||||
if (isset($_GET['ato_purge_template']))
|
||||
{
|
||||
global $template;
|
||||
$template->delete_compiled_templates();
|
||||
FileCombiner::clear_combined_files();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Mark browser session cache for deletion
|
||||
*/
|
||||
public static function invalidate_cache()
|
||||
{
|
||||
global $conf;
|
||||
conf_update_param('multiview_invalidate_cache', true, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Register custom API methods
|
||||
*/
|
||||
public static function register_ws($arr)
|
||||
{
|
||||
$service = &$arr[0];
|
||||
|
||||
$service->addMethod(
|
||||
'multiView.getData',
|
||||
array('MultiView', 'ws_get_data'),
|
||||
array(),
|
||||
'AdminTools private method.',
|
||||
null,
|
||||
array('admin_only' => true, 'hidden' => true)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* API method
|
||||
* Return full list of users, themes and languages
|
||||
*/
|
||||
public static function ws_get_data($params)
|
||||
{
|
||||
global $conf;
|
||||
|
||||
// get users
|
||||
$query = '
|
||||
SELECT
|
||||
'.$conf['user_fields']['id'].' AS id,
|
||||
'.$conf['user_fields']['username'].' AS username,
|
||||
status
|
||||
FROM '.USERS_TABLE.' AS u
|
||||
INNER JOIN '.USER_INFOS_TABLE.' AS i
|
||||
ON '.$conf['user_fields']['id'].' = user_id
|
||||
ORDER BY CONVERT('.$conf['user_fields']['username'].', CHAR)
|
||||
;';
|
||||
$out['users'] = array_from_query($query);
|
||||
|
||||
// get themes
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/themes.class.php');
|
||||
$themes = new themes();
|
||||
foreach (array_keys($themes->db_themes_by_id) as $theme)
|
||||
{
|
||||
if (!empty($theme))
|
||||
{
|
||||
$out['themes'][] = $theme;
|
||||
}
|
||||
}
|
||||
|
||||
// get languages
|
||||
foreach (get_languages() as $code => $name)
|
||||
{
|
||||
$out['languages'][] = array(
|
||||
'id' => $code,
|
||||
'name' => $name,
|
||||
);
|
||||
}
|
||||
|
||||
conf_delete_param('multiview_invalidate_cache');
|
||||
|
||||
return $out;
|
||||
}
|
||||
}
|
||||
@@ -1,360 +0,0 @@
|
||||
<?php
|
||||
defined('ADMINTOOLS_PATH') or die('Hacking attempt!');
|
||||
|
||||
/**
|
||||
* Add main toolbar to current page
|
||||
* @trigger loc_after_page_header
|
||||
*/
|
||||
function admintools_add_public_controller()
|
||||
{
|
||||
global $MultiView, $conf, $template, $page, $user, $picture;
|
||||
|
||||
if (script_basename() == 'picture' and empty($picture['current']))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
$url_root = get_root_url();
|
||||
$tpl_vars = array();
|
||||
|
||||
if ($MultiView->is_admin())
|
||||
{ // full options for admin
|
||||
$tpl_vars['U_SITE_ADMIN'] = $url_root . 'admin.php?page=';
|
||||
$tpl_vars['MULTIVIEW'] = $MultiView->get_data();
|
||||
$tpl_vars['USER'] = $MultiView->get_user();
|
||||
$tpl_vars['CURRENT_USERNAME'] = $user['id']==$conf['guest_id'] ? l10n('guest') : $user['username'];
|
||||
$tpl_vars['DELETE_CACHE'] = isset($conf['multiview_invalidate_cache']);
|
||||
|
||||
if (($admin_lang = $MultiView->get_user_language()) !== false)
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH . 'include/functions_mail.inc.php');
|
||||
switch_lang_to($admin_lang);
|
||||
}
|
||||
}
|
||||
else if ($conf['AdminTools']['public_quick_edit'] and
|
||||
script_basename() == 'picture' and $picture['current']['added_by'] == $user['id']
|
||||
)
|
||||
{ // only "edit" button for photo owner
|
||||
}
|
||||
else
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
$tpl_vars['POSITION'] = $conf['AdminTools']['closed_position'];
|
||||
$tpl_vars['DEFAULT_OPEN'] = $conf['AdminTools']['default_open'];
|
||||
$tpl_vars['U_SELF'] = $MultiView->get_clean_url(true);
|
||||
|
||||
// photo page
|
||||
if (script_basename() == 'picture')
|
||||
{
|
||||
$url_self = duplicate_picture_url();
|
||||
$tpl_vars['IS_PICTURE'] = true;
|
||||
|
||||
// admin can add to caddie and set representattive
|
||||
if ($MultiView->is_admin())
|
||||
{
|
||||
$template->clear_assign(array(
|
||||
'U_SET_AS_REPRESENTATIVE',
|
||||
'U_PHOTO_ADMIN',
|
||||
'U_CADDIE',
|
||||
));
|
||||
|
||||
$template->set_prefilter('picture', 'admintools_remove_privacy');
|
||||
|
||||
$tpl_vars['U_CADDIE'] = add_url_params(
|
||||
$url_self,
|
||||
array('action'=>'add_to_caddie')
|
||||
);
|
||||
|
||||
$query = '
|
||||
SELECT element_id FROM ' . CADDIE_TABLE . '
|
||||
WHERE element_id = ' . $page['image_id'] .'
|
||||
;';
|
||||
$tpl_vars['IS_IN_CADDIE'] = pwg_db_num_rows(pwg_query($query)) > 0;
|
||||
|
||||
if (isset($page['category']))
|
||||
{
|
||||
$tpl_vars['CATEGORY_ID'] = $page['category']['id'];
|
||||
|
||||
$tpl_vars['U_SET_REPRESENTATIVE'] = add_url_params(
|
||||
$url_self,
|
||||
array('action'=>'set_as_representative')
|
||||
);
|
||||
|
||||
$tpl_vars['IS_REPRESENTATIVE'] = $page['category']['representative_picture_id'] == $page['image_id'];
|
||||
}
|
||||
|
||||
$tpl_vars['U_ADMIN_EDIT'] = $url_root . 'admin.php?page=photo-' . $page['image_id']
|
||||
.(isset($page['category']) ? '&cat_id=' . $page['category']['id'] : '');
|
||||
}
|
||||
|
||||
$tpl_vars['U_DELETE'] = add_url_params(
|
||||
$url_self, array(
|
||||
'delete'=>'',
|
||||
'pwg_token'=>get_pwg_token()
|
||||
)
|
||||
);
|
||||
|
||||
// gets tags (full available list is loaded in ajax)
|
||||
include_once(PHPWG_ROOT_PATH . 'admin/include/functions.php');
|
||||
|
||||
$query = '
|
||||
SELECT id, name
|
||||
FROM '.IMAGE_TAG_TABLE.' AS it
|
||||
JOIN '.TAGS_TABLE.' AS t ON t.id = it.tag_id
|
||||
WHERE image_id = '.$page['image_id'].'
|
||||
;';
|
||||
$tag_selection = get_taglist($query);
|
||||
|
||||
$tpl_vars['QUICK_EDIT'] = array(
|
||||
'img' => $picture['current']['derivatives']['square']->get_url(),
|
||||
'name' => $picture['current']['name'],
|
||||
'comment' => $picture['current']['comment'],
|
||||
'author' => $picture['current']['author'],
|
||||
'level' => $picture['current']['level'],
|
||||
'date_creation' => substr($picture['current']['date_creation'], 0, 10),
|
||||
'date_creation_time' => substr($picture['current']['date_creation'], 11, 5),
|
||||
'tag_selection' => $tag_selection,
|
||||
);
|
||||
}
|
||||
// album page (admin only)
|
||||
else if ($MultiView->is_admin() and @$page['section'] == 'categories' and isset($page['category']))
|
||||
{
|
||||
$url_self = duplicate_index_url();
|
||||
|
||||
$tpl_vars['IS_CATEGORY'] = true;
|
||||
$tpl_vars['CATEGORY_ID'] = $page['category']['id'];
|
||||
|
||||
$template->clear_assign(array(
|
||||
'U_EDIT',
|
||||
'U_CADDIE',
|
||||
));
|
||||
|
||||
$tpl_vars['U_ADMIN_EDIT'] = $url_root . 'admin.php?page=album-' . $page['category']['id'];
|
||||
|
||||
if (!empty($page['items']))
|
||||
{
|
||||
$tpl_vars['U_CADDIE'] = add_url_params(
|
||||
$url_self,
|
||||
array('caddie'=>1)
|
||||
);
|
||||
}
|
||||
|
||||
$tpl_vars['QUICK_EDIT'] = array(
|
||||
'img' => null,
|
||||
'name' => $page['category']['name'],
|
||||
'comment' => $page['category']['comment'],
|
||||
);
|
||||
|
||||
if (!empty($page['category']['representative_picture_id']))
|
||||
{
|
||||
$query = '
|
||||
SELECT * FROM '.IMAGES_TABLE.'
|
||||
WHERE id = '. $page['category']['representative_picture_id'] .'
|
||||
;';
|
||||
$image_infos = pwg_db_fetch_assoc(pwg_query($query));
|
||||
|
||||
$tpl_vars['QUICK_EDIT']['img'] = DerivativeImage::get_one(IMG_SQUARE, $image_infos)->get_url();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$template->assign(array(
|
||||
'ADMINTOOLS_PATH' => './plugins/' . ADMINTOOLS_ID .'/',
|
||||
'ato' => $tpl_vars,
|
||||
));
|
||||
|
||||
$template->set_filename('ato_public_controller', realpath(ADMINTOOLS_PATH . 'template/public_controller.tpl'));
|
||||
$template->parse('ato_public_controller');
|
||||
|
||||
if ($MultiView->is_admin() && @$admin_lang !== false)
|
||||
{
|
||||
switch_lang_back();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add main toolbar to current page
|
||||
* @trigger loc_after_page_header
|
||||
*/
|
||||
function admintools_add_admin_controller()
|
||||
{
|
||||
global $MultiView, $conf, $template, $page, $user;
|
||||
|
||||
$url_root = get_root_url();
|
||||
$tpl_vars = array();
|
||||
|
||||
$tpl_vars['MULTIVIEW'] = $MultiView->get_data();
|
||||
$tpl_vars['DELETE_CACHE'] = isset($conf['multiview_invalidate_cache']);
|
||||
$tpl_vars['U_SELF'] = $MultiView->get_clean_admin_url(true);
|
||||
|
||||
if (($admin_lang = $MultiView->get_user_language()) !== false)
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH . 'include/functions_mail.inc.php');
|
||||
switch_lang_to($admin_lang);
|
||||
}
|
||||
|
||||
$template->assign(array(
|
||||
'ADMINTOOLS_PATH' => './plugins/' . ADMINTOOLS_ID .'/',
|
||||
'ato' => $tpl_vars,
|
||||
));
|
||||
|
||||
$template->set_filename('ato_admin_controller', realpath(ADMINTOOLS_PATH . 'template/admin_controller.tpl'));
|
||||
$template->parse('ato_admin_controller');
|
||||
|
||||
if ($MultiView->is_admin() && @$admin_lang !== false)
|
||||
{
|
||||
switch_lang_back();
|
||||
}
|
||||
}
|
||||
|
||||
function admintools_add_admin_controller_setprefilter()
|
||||
{
|
||||
global $template;
|
||||
$template->set_prefilter('header', 'admintools_admin_prefilter');
|
||||
}
|
||||
|
||||
function admintools_admin_prefilter($content)
|
||||
{
|
||||
$search = '<a class="icon-brush tiptip" href="{$U_CHANGE_THEME}" title="{\'Switch to clear or dark colors for administration\'|translate}">{\'Change Admin Colors\'|translate}</a>';
|
||||
$replace = '<span id="ato_container"><a class="icon-cog-alt" href="#">{\'Tools\'|translate}</a></span>';
|
||||
return str_replace($search, $replace, $content);
|
||||
}
|
||||
|
||||
/**
|
||||
* Disable privacy level switchbox
|
||||
*/
|
||||
function admintools_remove_privacy($content)
|
||||
{
|
||||
$search = '{if $display_info.privacy_level and isset($available_permission_levels)}';
|
||||
$replace = '{if false}';
|
||||
return str_replace($search, $replace, $content);
|
||||
}
|
||||
|
||||
/**
|
||||
* Save picture form
|
||||
* @trigger loc_begin_picture
|
||||
*/
|
||||
function admintools_save_picture()
|
||||
{
|
||||
global $page, $conf, $MultiView, $user, $picture;
|
||||
|
||||
if (!isset($_GET['delete']) and !isset($_POST['action']) and @$_POST['action'] != 'quick_edit')
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
$query = 'SELECT added_by FROM '. IMAGES_TABLE .' WHERE id = '. $page['image_id'] .';';
|
||||
list($added_by) = pwg_db_fetch_row(pwg_query($query));
|
||||
|
||||
if (!$MultiView->is_admin() and $user['id'] != $added_by)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (isset($_GET['delete']) and get_pwg_token()==@$_GET['pwg_token'])
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH . 'admin/include/functions.php');
|
||||
|
||||
delete_elements(array($page['image_id']), true);
|
||||
invalidate_user_cache();
|
||||
|
||||
if (isset($page['rank_of'][ $page['image_id'] ]))
|
||||
{
|
||||
redirect(
|
||||
duplicate_index_url(
|
||||
array(
|
||||
'start' =>
|
||||
floor($page['rank_of'][ $page['image_id'] ] / $page['nb_image_page'])
|
||||
* $page['nb_image_page']
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
redirect(make_index_url());
|
||||
}
|
||||
}
|
||||
|
||||
if ($_POST['action'] == 'quick_edit')
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH . 'admin/include/functions.php');
|
||||
|
||||
$data = array(
|
||||
'name' => $_POST['name'],
|
||||
'author' => $_POST['author'],
|
||||
);
|
||||
|
||||
if ($MultiView->is_admin())
|
||||
{
|
||||
$data['level'] = $_POST['level'];
|
||||
}
|
||||
|
||||
if ($conf['allow_html_descriptions'])
|
||||
{
|
||||
$data['comment'] = @$_POST['comment'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$data['comment'] = strip_tags(@$_POST['comment']);
|
||||
}
|
||||
|
||||
if (!empty($_POST['date_creation']) and strtotime($_POST['date_creation']) !== false)
|
||||
{
|
||||
$data['date_creation'] = $_POST['date_creation'] .' '. $_POST['date_creation_time'];
|
||||
}
|
||||
|
||||
single_update(
|
||||
IMAGES_TABLE,
|
||||
$data,
|
||||
array('id' => $page['image_id'])
|
||||
);
|
||||
|
||||
$tag_ids = array();
|
||||
if (!empty($_POST['tags']))
|
||||
{
|
||||
$tag_ids = get_tag_ids($_POST['tags']);
|
||||
}
|
||||
set_tags($tag_ids, $page['image_id']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Save category form
|
||||
* @trigger loc_begin_index
|
||||
*/
|
||||
function admintools_save_category()
|
||||
{
|
||||
global $page, $conf, $MultiView;
|
||||
|
||||
if (!$MultiView->is_admin())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (@$_POST['action'] == 'quick_edit')
|
||||
{
|
||||
$data = array(
|
||||
'name' => $_POST['name'],
|
||||
);
|
||||
|
||||
if ($conf['allow_html_descriptions'])
|
||||
{
|
||||
$data['comment'] = @$_POST['comment'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$data['comment'] = strip_tags(@$_POST['comment']);
|
||||
}
|
||||
|
||||
single_update(
|
||||
CATEGORIES_TABLE,
|
||||
$data,
|
||||
array('id' => $page['category']['id'])
|
||||
);
|
||||
|
||||
redirect(duplicate_index_url());
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
القيام ببعض المهام الادارية على الصفحات العامة
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Viewing as <b>%s</b>.'] = 'عرض بشكل <b>%s</b>.';
|
||||
$lang['View as'] = 'عرض بشكل';
|
||||
$lang['Show SQL queries'] = 'إظهار استعلامات SQL';
|
||||
$lang['Saved'] = 'حفظ';
|
||||
$lang['Save visit in history'] = 'حفظ تاريخ الزيارة';
|
||||
$lang['Save'] = 'حفظ';
|
||||
$lang['Revert'] = 'الى الخلف';
|
||||
$lang['Quick edit'] = 'التحرير السريع';
|
||||
$lang['Properties page'] = 'خصائص الصفحة';
|
||||
$lang['Debug template'] = 'قالب تصحيح الأخطاء';
|
||||
$lang['Combine JS&CSS'] = 'الجمع بين JS و CSS';
|
||||
$lang['Debug languages'] = 'تصحيح أخطاء اللغات';
|
||||
$lang['Closed icon position'] = 'إغلاق وضع الآيقونه';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'منح حق تحرير الصور لاصحاب الصور حتى المدير العام';
|
||||
$lang['Open toolbar by default'] = 'فتح شريط الأدوات بشكل افتراضي';
|
||||
$lang['left'] = 'يسار';
|
||||
$lang['right'] = 'يمين';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Няколко административни настройки на публичните страници
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Show SQL queries'] = 'Покажи SQL заявки';
|
||||
$lang['Combine JS&CSS'] = 'Комбиниране JS&CSS';
|
||||
$lang['Debug languages'] = 'Език за отстраняване на грешки';
|
||||
$lang['Debug template'] = 'Шаблон отстраняване на грешки';
|
||||
$lang['Properties page'] = 'Страница с настройки';
|
||||
$lang['Quick edit'] = 'Бърза редакция';
|
||||
$lang['Revert'] = 'Обратно';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Разглежда като <b>%s</b>.';
|
||||
$lang['View as'] = 'Виж като';
|
||||
$lang['Save'] = 'Запис';
|
||||
$lang['Save visit in history'] = 'Пази история на посещенията';
|
||||
$lang['Saved'] = 'Записано';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Дава права за редакция върху снимка на собственика й дори и да не е администратор';
|
||||
$lang['Closed icon position'] = 'Затворена позиция на икона';
|
||||
$lang['Open toolbar by default'] = 'Отваряне на лента с инструменти по подразбиране';
|
||||
$lang['right'] = 'дясно';
|
||||
$lang['left'] = 'ляво';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Evit ober trevelloù mererezh dre ar pajennoù diavaez.
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Revert'] = 'Nullañ';
|
||||
$lang['Closed icon position'] = 'Lec\'h an arlun serret';
|
||||
$lang['Combine JS&CSS'] = 'Kenstrollañ JS ha CSS';
|
||||
$lang['Debug languages'] = 'Dizreinañ ar yezhoù';
|
||||
$lang['Debug template'] = 'Dizreinañ ar patrom';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Reiñ da perc\'henn al luc\'hskeudennoù tu du aozañ buan ha pa vefent ket merourien.';
|
||||
$lang['Open toolbar by default'] = 'Digeriñ ar varrenn vinvioù dre ziouer';
|
||||
$lang['Properties page'] = 'Pajenn ar perzhioù';
|
||||
$lang['Quick edit'] = 'Aozañ buan';
|
||||
$lang['Save'] = 'Enrollañ';
|
||||
$lang['Save visit in history'] = 'Enrollañ ar weladenn er roll-istor';
|
||||
$lang['Saved'] = 'Enrollet';
|
||||
$lang['Show SQL queries'] = 'Diskouez rekedoù SQL';
|
||||
$lang['View as'] = 'Gwelet evel';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Gwelet evel <b>%s</b>.';
|
||||
$lang['left'] = 'tu kleiz';
|
||||
$lang['right'] = 'tu dehoù';
|
||||
@@ -1 +0,0 @@
|
||||
Permet tasques d'administració des de les pàgines públiques
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Closed icon position'] = 'Posició de la icona';
|
||||
$lang['Combine JS&CSS'] = 'Combina JS&SS';
|
||||
$lang['Debug languages'] = 'Depura els idiomes';
|
||||
$lang['Debug template'] = 'Depura la plantilla';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Dóna accés als propietaris de les fotos (encara que no siguin administradors) per poder editar de forma ràpida ';
|
||||
$lang['Open toolbar by default'] = 'Obre la barra d\'eines per defecte';
|
||||
$lang['Properties page'] = 'Pàgina de propietats';
|
||||
$lang['Quick edit'] = 'Editor ràpid';
|
||||
$lang['Revert'] = 'Reverteix';
|
||||
$lang['Save'] = 'Guarda';
|
||||
$lang['Save visit in history'] = 'Guarda la visita a l\'historial';
|
||||
$lang['Saved'] = 'S\'ha guardat';
|
||||
$lang['Show SQL queries'] = 'Mostra les consultes SQL';
|
||||
$lang['View as'] = 'Veure com';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Veure com <b>%s</b>.';
|
||||
$lang['left'] = 'esquerra';
|
||||
$lang['right'] = 'dreta';
|
||||
@@ -1 +0,0 @@
|
||||
Umožní provádět některé administrační úkony i na stránkách fotogalerie
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,20 +0,0 @@
|
||||
<?php
|
||||
|
||||
$lang['Combine JS&CSS'] = 'Kombinace JS&CSS';
|
||||
$lang['Debug languages'] = 'Debug překladů';
|
||||
$lang['Debug template'] = 'Debug šablony vzhledu';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Zobrazení jako <b>%s</b>.';
|
||||
$lang['Properties page'] = 'Stránka vlastností';
|
||||
$lang['Quick edit'] = 'Rychlá editace';
|
||||
$lang['Revert'] = 'Nazpět';
|
||||
$lang['Save'] = 'Uložit';
|
||||
$lang['Saved'] = 'Uloženo';
|
||||
$lang['Save visit in history'] = 'Ukládat návštevy do historie';
|
||||
$lang['Show SQL queries'] = 'Zobrazit SQL queries';
|
||||
$lang['View as'] = 'Zobrazit jako';
|
||||
|
||||
$lang['Closed icon position'] = 'Poloha ikony pro zavření';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Udělit přístup do rychlé editace vlastníkům fotek i když nejsou admin';
|
||||
$lang['Open toolbar by default'] = 'Výchozí otevření panelu nástrojů';
|
||||
$lang['left'] = 'levý';
|
||||
$lang['right'] = 'pravý';
|
||||
@@ -1 +0,0 @@
|
||||
Foretag nogle administrative handlinger fra de offentlige sider.
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Kombiner JS&CSS';
|
||||
$lang['Debug languages'] = 'Debug sprog';
|
||||
$lang['Debug template'] = 'Debug skabelon';
|
||||
$lang['Properties page'] = 'Egenskabsside';
|
||||
$lang['Quick edit'] = 'Hurtigredigering';
|
||||
$lang['Revert'] = 'Tilbagefør';
|
||||
$lang['Save'] = 'Gem';
|
||||
$lang['Save visit in history'] = 'Gem besøg i historikken';
|
||||
$lang['Show SQL queries'] = 'Vis SQL-forespørgsler';
|
||||
$lang['View as'] = 'Vis som';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Viser som <b>%s</b>.';
|
||||
$lang['Saved'] = 'Gemt';
|
||||
$lang['Closed icon position'] = 'Lukket-ikons placering';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Giv adgang til hurtigredigering for fotoejere, selv hvis de ikke er admin';
|
||||
$lang['Open toolbar by default'] = 'Åbn værktøjslinje som standard';
|
||||
$lang['left'] = 'venstre';
|
||||
$lang['right'] = 'højre';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Ausgewählte Admin-Tätigkeiten mittels Toolbar von allen Seiten aus durchführen
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'JS&CSS kombinieren';
|
||||
$lang['Debug languages'] = 'Sprachen debuggen';
|
||||
$lang['Debug template'] = 'Vorlagen debuggen';
|
||||
$lang['Properties page'] = 'Eigenschaften';
|
||||
$lang['Quick edit'] = 'Schnellbearbeitung';
|
||||
$lang['Revert'] = 'Zurücksetzen';
|
||||
$lang['Save'] = 'Speichern';
|
||||
$lang['Save visit in history'] = 'Zugriff in Historie speichern';
|
||||
$lang['Show SQL queries'] = 'SQL-Abfrage anzeigen';
|
||||
$lang['View as'] = 'Anzeigen als';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Aktueller Benutzer: <b>%s</b>';
|
||||
$lang['Saved'] = 'Gespeichert';
|
||||
$lang['Closed icon position'] = 'Position des geschlossenen Icons';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Zugriff zum schnellen Editieren für Bildereigentümer erlauben, obwohl sie kein Administrator sind.';
|
||||
$lang['Open toolbar by default'] = 'Die Werkzeugleiste standardmässig öffnen';
|
||||
$lang['left'] = 'links';
|
||||
$lang['right'] = 'rechts';
|
||||
@@ -1 +0,0 @@
|
||||
Κάνει κάποιες διαχειριστικές εργασίες από δημόσιες σελίδες
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Προβολή ως <b>%s</b>';
|
||||
$lang['View as'] = 'Προβολή ως';
|
||||
$lang['Show SQL queries'] = 'Εμφάνιση ερωτημάτων SQL';
|
||||
$lang['Save visit in history'] = 'Αποθήκευση επίσκεψης στην ιστορία';
|
||||
$lang['Save'] = 'Αποθήκευση';
|
||||
$lang['Revert'] = 'Επαναφορά';
|
||||
$lang['Quick edit'] = 'Γρήγορη επεξεργασία';
|
||||
$lang['Debug languages'] = 'Γλώσσες αποσφάτωσης';
|
||||
$lang['Debug template'] = 'Πρότυπο αποσφάτωσης';
|
||||
$lang['Properties page'] = 'Ιδιότητες σελίδας';
|
||||
$lang['Combine JS&CSS'] = 'Συνδυάστε JS&CSS';
|
||||
$lang['Saved'] = 'Αποθηκεύτηκε';
|
||||
$lang['right'] = 'δεξιά';
|
||||
$lang['left'] = 'αριστερά';
|
||||
$lang['Open toolbar by default'] = 'Ανοικτή γραμμή εργαλείων από προεπιλογή';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Δώστε πρόσβαση σε γρήγορη επεξεργασία στους ιδιοκτήτες φωτογραφιών, ακόμη και αν δεν το διαχειριστές ';
|
||||
$lang['Closed icon position'] = 'Θέση Κλειστού εικονονίδιου';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Do some admin task from the public pages
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
$lang['Combine JS&CSS'] = 'Combine JS&CSS';
|
||||
$lang['Debug languages'] = 'Debug languages';
|
||||
$lang['Debug template'] = 'Debug template';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Viewing as <b>%s</b>.';
|
||||
$lang['Properties page'] = 'Properties page';
|
||||
$lang['Quick edit'] = 'Quick edit';
|
||||
$lang['Revert'] = 'Revert';
|
||||
$lang['Save'] = 'Save';
|
||||
$lang['Saved'] = 'Saved';
|
||||
$lang['Save visit in history'] = 'Save visit in history';
|
||||
$lang['Show SQL queries'] = 'Show SQL queries';
|
||||
$lang['View as'] = 'View as';
|
||||
$lang['Closed icon position'] = 'Closed icon position';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Give access to quick edit to photo owners even if they are not admin';
|
||||
$lang['Open toolbar by default'] = 'Open toolbar by default';
|
||||
$lang['left'] = 'left';
|
||||
$lang['right'] = 'right';
|
||||
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Faras kelkajn administrajn taskojn el la publikaj paĝoj
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Kunigi JS&CSS';
|
||||
$lang['Debug languages'] = 'Sencimigi la lingvojn';
|
||||
$lang['Debug template'] = 'Sencimigi la ŝablonon';
|
||||
$lang['Properties page'] = 'Paĝaj ecoj';
|
||||
$lang['Quick edit'] = 'Rapida redakto';
|
||||
$lang['Revert'] = 'Malfari';
|
||||
$lang['Save'] = 'Konservi';
|
||||
$lang['Save visit in history'] = 'Konservi la viziton al historio';
|
||||
$lang['Show SQL queries'] = 'Montri la SQL-aj informpetoj';
|
||||
$lang['View as'] = 'Vidi kiel';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Vidita kiel <b>%s</b>';
|
||||
$lang['Saved'] = 'Konservita';
|
||||
$lang['Closed icon position'] = 'Pozicio de la fermita bildsimbolo';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Permesi al fotoposedantoj atingon al rapida redaktado eĉ se ili ne estas administrantoj';
|
||||
$lang['Open toolbar by default'] = 'Malfermi la aprioran ilobreton';
|
||||
$lang['left'] = 'maldekstra';
|
||||
$lang['right'] = 'dekstra';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Hacer algunas tarea de administración de las páginas públicas
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Revert'] = 'Volver';
|
||||
$lang['Save'] = 'Guardar';
|
||||
$lang['Save visit in history'] = 'Guardar el histórico de visita ';
|
||||
$lang['Show SQL queries'] = 'Mostrar consultas SQL ';
|
||||
$lang['View as'] = 'Ver como';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Visualización como <b>%s</b>.';
|
||||
$lang['Quick edit'] = 'Edición rápida';
|
||||
$lang['Properties page'] = 'Propriedades de la pagina';
|
||||
$lang['Debug template'] = 'Depurar plantilla';
|
||||
$lang['Debug languages'] = 'Depurar idiomas';
|
||||
$lang['Combine JS&CSS'] = 'Combine JS y CSS';
|
||||
$lang['Saved'] = 'Guardado';
|
||||
$lang['Closed icon position'] = 'Posición de icono Cerrado';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Dar acceso a la edición rápida a los propietarios de las fotos, incluso si no son admin';
|
||||
$lang['Open toolbar by default'] = 'Abrir por defecto la barra de herramientas ';
|
||||
$lang['left'] = 'izquierda';
|
||||
$lang['right'] = 'derecha';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Lubab mõningast toimetamist otse üldlehtedelt
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['left'] = 'vasak';
|
||||
$lang['right'] = 'parem';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Kuvatakse kui <b>%s</b>.';
|
||||
$lang['View as'] = 'Näita kui';
|
||||
$lang['Show SQL queries'] = 'Näita andmebaasi SQL-päringuid';
|
||||
$lang['Saved'] = 'Salvestatud';
|
||||
$lang['Save visit in history'] = 'Salvesta külastus ajalukku';
|
||||
$lang['Save'] = 'Salvesta';
|
||||
$lang['Revert'] = 'Taasta';
|
||||
$lang['Quick edit'] = 'Kiirtoimeta';
|
||||
$lang['Properties page'] = 'Atribuudileht';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Luba fotode kiirtoimetamist nende omanikele, kuigi nad pole haldurid';
|
||||
$lang['Open toolbar by default'] = 'Näita tööriistariba vaikimisi';
|
||||
$lang['Debug template'] = 'Silumise mall';
|
||||
$lang['Debug languages'] = 'Silumise keeled';
|
||||
$lang['Combine JS&CSS'] = 'Kasuta nii JavaScripti kui CSS-i';
|
||||
$lang['Closed icon position'] = 'Suletud ikooni asukoht';
|
||||
@@ -1 +0,0 @@
|
||||
از صفحات عمومي مقداري كار مديريتي انجام دهيد.
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Closed icon position'] = 'موقعيت آيكون بسته شده';
|
||||
$lang['Combine JS&CSS'] = 'تركيب جاوا اسكريپ و قالب';
|
||||
$lang['Debug languages'] = 'زبانهاي خطايابي';
|
||||
$lang['Debug template'] = 'قالب خطايابي';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'دسترسي صاحب عكس براي ويرايش عكس در حالت غير مديركل';
|
||||
$lang['Open toolbar by default'] = 'باز كردن پيش فرض ابزار';
|
||||
$lang['Properties page'] = 'صفحه مشخصات';
|
||||
$lang['Quick edit'] = 'ويرايش سريع';
|
||||
$lang['Revert'] = 'بازگرداندن';
|
||||
$lang['Save'] = 'ذخيره';
|
||||
$lang['Save visit in history'] = 'ذخيره بازديدها در تاريخچه';
|
||||
$lang['Saved'] = 'ذخيره شده';
|
||||
$lang['Show SQL queries'] = 'نمايش دستورات جستجوي بانك اطلاعات';
|
||||
$lang['View as'] = 'نمايش در حالت';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'نمايش در حالت <b>%s</b>.';
|
||||
$lang['left'] = 'چپ';
|
||||
$lang['right'] = 'راست';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Suorita osa ylläpitäjän toiminnoista suoraan julkisilta sivuilta
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Yhdistä JS&CSS';
|
||||
$lang['Debug languages'] = 'Debuggaa kielet';
|
||||
$lang['Quick edit'] = 'Pikamuokkaus';
|
||||
$lang['Revert'] = 'Palauta';
|
||||
$lang['Save'] = 'Tallenna';
|
||||
$lang['Show SQL queries'] = 'Näytä SQL-kyselyt';
|
||||
$lang['View as'] = 'Katso';
|
||||
$lang['Properties page'] = 'Ominaisuussivu';
|
||||
$lang['Save visit in history'] = 'Tallenna käynti historiatietoihin';
|
||||
$lang['Saved'] = 'Tallennettu';
|
||||
$lang['Closed icon position'] = 'Suljettu kuvakkeen sijainti';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Näkyy <b>%s</b>';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Anna oikeus pikamuokkaukseen vaikkei käyttäjä ole ylläpitäjä';
|
||||
$lang['Debug template'] = 'Debuggaa malline';
|
||||
$lang['Open toolbar by default'] = 'Avaa työkalupalkki oletuksena';
|
||||
$lang['left'] = 'vasen';
|
||||
$lang['right'] = 'oikea';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Rend possibles certaines tâches d’administration depuis la partie publique
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
$lang['Combine JS&CSS'] = 'Combiner JS&CSS';
|
||||
$lang['Debug languages'] = 'Déboguer les langues';
|
||||
$lang['Debug template'] = 'Déboguer le patron';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Vue simulée de <b>%s</b>.';
|
||||
$lang['Properties page'] = 'Page d\'administration';
|
||||
$lang['Quick edit'] = 'Édition rapide';
|
||||
$lang['Revert'] = 'Annuler';
|
||||
$lang['Save'] = 'Sauvegarder';
|
||||
$lang['Saved'] = 'Sauvegardé';
|
||||
$lang['Save visit in history'] = 'Sauvegarder la viste dans l\'historique';
|
||||
$lang['Show SQL queries'] = 'Afficher les requêtes SQL';
|
||||
$lang['View as'] = 'Voir en tant que';
|
||||
$lang['Closed icon position'] = 'Position de l\'icône fermée';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Autoriser l\'accès à l\'édition rapide aux propriétaires des photos même s\'ils ne sont pas administrateurs';
|
||||
$lang['Open toolbar by default'] = 'Ouvrir la barre par défaut';
|
||||
$lang['left'] = 'gauche';
|
||||
$lang['right'] = 'droite';
|
||||
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Rend possibles certaines tâches d’administration depuis la partie publique
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
$lang['Combine JS&CSS'] = 'Combiner JS&CSS';
|
||||
$lang['Debug languages'] = 'Debuguer les langues';
|
||||
$lang['Debug template'] = 'Debuguer le template';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Vue simulée de <b>%s</b>.';
|
||||
$lang['Properties page'] = 'Page d\'administration';
|
||||
$lang['Quick edit'] = 'Édition rapide';
|
||||
$lang['Revert'] = 'Annuler';
|
||||
$lang['Save'] = 'Sauvegarder';
|
||||
$lang['Saved'] = 'Sauvegardé';
|
||||
$lang['Save visit in history'] = 'Sauvegarder la viste dans l\'historique';
|
||||
$lang['Show SQL queries'] = 'Afficher les requêtes SQL';
|
||||
$lang['View as'] = 'Voir en tant que';
|
||||
$lang['Closed icon position'] = 'Position the l\'icône fermé';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Autoriser l\'accès à l\'édition rapide aux propriétaires des photos même s\'ils ne sont pas admin';
|
||||
$lang['Open toolbar by default'] = 'Ouvrir la barre par défaut';
|
||||
$lang['left'] = 'gauche';
|
||||
$lang['right'] = 'droite';
|
||||
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Faga algunha tarefa de administración das páxinas públicas.
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Dar acceso a modificación rápida para propietarios de fotografías, mesmo se eles non son administradores';
|
||||
$lang['Quick edit'] = 'Modificación rápida';
|
||||
$lang['Revert'] = 'Reverter';
|
||||
$lang['Save'] = 'Gardar';
|
||||
$lang['Save visit in history'] = 'Gardar visita no histórico';
|
||||
$lang['Saved'] = 'Gardado';
|
||||
$lang['Show SQL queries'] = 'Amosar consultas SQL';
|
||||
$lang['View as'] = 'Ver como';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Vendo como <b>%s</b>.';
|
||||
$lang['left'] = 'esquerda';
|
||||
$lang['right'] = 'dereita';
|
||||
$lang['Closed icon position'] = 'Posición icona pechada';
|
||||
$lang['Combine JS&CSS'] = 'Combinar JS&CSS';
|
||||
$lang['Debug languages'] = 'Depurar idiomas';
|
||||
$lang['Debug template'] = 'Depurar modelo';
|
||||
$lang['Open toolbar by default'] = 'Abrir a barra de ferramentas predeterminada';
|
||||
$lang['Properties page'] = 'Páxina de propiedades';
|
||||
@@ -1 +0,0 @@
|
||||
ביצוע משימות מנהל מדפים ציבוריים
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'תן גישה לעריכה מהירה לבעלי תמונה, גם אם הם לא מנהלים';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'צופה כ <b>%s</b>.';
|
||||
$lang['Open toolbar by default'] = 'סרגל כלים פתוחים כברירת מחדל';
|
||||
$lang['Properties page'] = 'מאפיינים';
|
||||
$lang['Combine JS&CSS'] = 'שלב JS&CSS';
|
||||
$lang['Debug languages'] = 'מיפוי שגיאות בשפות';
|
||||
$lang['Debug template'] = 'מיפוי שגיאות בתבנית';
|
||||
$lang['Closed icon position'] = 'סגור מיקום סמל';
|
||||
$lang['Quick edit'] = 'עריכה מהירה';
|
||||
$lang['Revert'] = 'חזור';
|
||||
$lang['Save'] = 'שמור';
|
||||
$lang['Save visit in history'] = 'שמור ביקורים בהיסטוריה';
|
||||
$lang['Saved'] = 'נשמר';
|
||||
$lang['Show SQL queries'] = 'הצג שאילתות SQL';
|
||||
$lang['View as'] = 'צפה כ';
|
||||
$lang['left'] = 'שמאל';
|
||||
$lang['right'] = 'ימין';
|
||||
@@ -1 +0,0 @@
|
||||
Néhány admin tevékenységet elláthatsz a publikus oldalról
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Debug languages'] = 'Hibakeresés nyelvek';
|
||||
$lang['Debug template'] = 'Hibakeresés sablon';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'A kép tulasdonosok hozzáférnek a gyors szerkesztéshez akkor is, ha nem adminisztrátorok';
|
||||
$lang['Open toolbar by default'] = 'Eszköztár megnyitása alapértelmezés szerint';
|
||||
$lang['Properties page'] = 'Oldal tulajdonságok';
|
||||
$lang['Quick edit'] = 'Gyors szerkesztés';
|
||||
$lang['Revert'] = 'Visszaállít';
|
||||
$lang['Save'] = 'Ment';
|
||||
$lang['Saved'] = 'Mentve';
|
||||
$lang['Show SQL queries'] = 'SQL lekérdezések mutatása';
|
||||
$lang['left'] = 'bal';
|
||||
$lang['right'] = 'jobb';
|
||||
$lang['Combine JS&CSS'] = 'Kombinált JS és CSS';
|
||||
$lang['Save visit in history'] = 'Látogatások archívumba mentése';
|
||||
$lang['View as'] = 'Megjelenítés mint:';
|
||||
$lang['Closed icon position'] = 'Zárt ikon hely';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Látható, mint <b>%s</b>.';
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Fare qualche admin task dalle pagine pubbliche
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Visualizza come <b>%s</b>.';
|
||||
$lang['View as'] = 'Mostra come';
|
||||
$lang['Show SQL queries'] = 'Mostra queries SQL';
|
||||
$lang['Save visit in history'] = 'Salvare visita nella storia';
|
||||
$lang['Revert'] = 'Ripristina';
|
||||
$lang['Properties page'] = 'Proprietà pagina';
|
||||
$lang['Quick edit'] = 'Modifica veloce';
|
||||
$lang['Debug template'] = 'Debug dei modelli';
|
||||
$lang['Debug languages'] = 'Debug delle lingue';
|
||||
$lang['Combine JS&CSS'] = 'Combinare JS & CSS';
|
||||
$lang['Save'] = 'Salva';
|
||||
$lang['Saved'] = 'Salvato';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Dare accesso modifica veloce ai proprietari di foto anche se non sono amministratori';
|
||||
$lang['Closed icon position'] = 'Posiziona l\'icona di chiusura';
|
||||
$lang['Open toolbar by default'] = 'Apri la barra predefinita';
|
||||
$lang['left'] = 'sinistra';
|
||||
$lang['right'] = 'destra';
|
||||
?>
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,31 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Debug template'] = 'デバッグ テンプレート';
|
||||
$lang['Properties page'] = 'プロパティ ページ';
|
||||
$lang['Quick edit'] = 'クイックエディット';
|
||||
$lang['Revert'] = '元に戻す';
|
||||
$lang['Save'] = '保存';
|
||||
$lang['Saved'] = '保存しました';
|
||||
$lang['Show SQL queries'] = 'SQL クエリーを参照する';
|
||||
$lang['left'] = '左';
|
||||
$lang['right'] = '右';
|
||||
@@ -1 +0,0 @@
|
||||
ដើរតួជាប្រធានគ្រប់គ្រងវេបសាពីទំព័រសាធារណៈ
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Revert'] = 'ត្រឡប់ទៅដូចដើម';
|
||||
$lang['View as'] = 'បង្ហាញជា';
|
||||
$lang['right'] = 'ស្តាំ';
|
||||
$lang['left'] = 'ឆ្វេង';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'បង្ហាញជា <b>%s</b>។';
|
||||
$lang['Show SQL queries'] = 'បង្ហាញសំនេរ SQL';
|
||||
$lang['Saved'] = 'បានរក្សាទុក';
|
||||
$lang['Save visit in history'] = 'រក្សាការចូលមើលទុក';
|
||||
$lang['Save'] = 'រក្សាទុក';
|
||||
$lang['Quick edit'] = 'ការកែប្រែលឿន';
|
||||
$lang['Properties page'] = 'ទំព័រឯកសារលក្ខណៈ';
|
||||
$lang['Open toolbar by default'] = 'បើរបារឧបករណ៍ដោយលំនាំដើម';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'ផ្តល់សិទ្ធិចូលទៅការកែប្រែលឿនដល់ម្ចាស់រូបភាព បើទោះបីពួកគាត់ពុំមែនជាអ្នកគ្រប់គ្រងក៏ដោយ';
|
||||
$lang['Debug template'] = 'ស្វែងរកកំបុសពុម្ព';
|
||||
$lang['Debug languages'] = 'ស្វែងរកកំហុសភាសា';
|
||||
$lang['Combine JS&CSS'] = 'បញ្ចូល JS&CSS';
|
||||
$lang['Closed icon position'] = 'ទីតាំងរូបបិទ';
|
||||
@@ -1 +0,0 @@
|
||||
Atlikti kai kurias administravimo užduotis iš viešųjų puslapių
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Apjungti JS&CSS';
|
||||
$lang['Debug languages'] = 'Debuginti kalbas';
|
||||
$lang['Debug template'] = 'Debuginti šablonus';
|
||||
$lang['Properties page'] = 'Nustatymų puslapis';
|
||||
$lang['Quick edit'] = 'Greitas redagavimas';
|
||||
$lang['Revert'] = 'Atstatyti';
|
||||
$lang['Save'] = 'Išsaugoti';
|
||||
$lang['Save visit in history'] = 'Vesti vizitų žurnalą';
|
||||
$lang['Show SQL queries'] = 'Rodyty SQL užklausas';
|
||||
$lang['View as'] = 'Žiūrėti kaip';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Rodoma kaip <b>%s</b>.';
|
||||
$lang['Saved'] = 'Išsaugota';
|
||||
$lang['Closed icon position'] = 'Užvertos ikonos pozicija';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Leisti greitą nuotraukos redagavimą jų savininkams, net jeigu jie ne administratoriai';
|
||||
$lang['Open toolbar by default'] = 'Atverti įrankių juostą pagal nutylėjimą';
|
||||
$lang['left'] = 'kairė';
|
||||
$lang['right'] = 'dešinė';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Veikt kādu administratora uzdevumu no vispārējām lapām.
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Apvienot JS & CSS';
|
||||
$lang['Revert'] = 'Atgriezt';
|
||||
$lang['View as'] = 'Apskatīt kā';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Apskatīt kā <b>%s </ b>.';
|
||||
$lang['Show SQL queries'] = 'Parādīt SQL vaicājumu';
|
||||
$lang['Save visit in history'] = 'Saglabāt apmeklējumu vēsturē';
|
||||
$lang['Save'] = 'Saglabāt';
|
||||
$lang['Debug languages'] = 'Atkļūdot valodas';
|
||||
$lang['Debug template'] = 'Atkļūdošanas veidne';
|
||||
$lang['Properties page'] = 'Rekvizītu lapa';
|
||||
$lang['Quick edit'] = 'Ātrā rediģēšana';
|
||||
$lang['Saved'] = 'Saglabāts';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Ļauj piekļūt foto īpašniekiem ātrai rediģēšanai arī tad, ja tie nav admini';
|
||||
$lang['Closed icon position'] = 'Ikonas slēgt pozīcija';
|
||||
$lang['Open toolbar by default'] = 'Atvērt rīkjoslu pēc noklusējuma';
|
||||
$lang['right'] = 'pa labi';
|
||||
$lang['left'] = 'pa kreisi';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Do some admin task from the public pages
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,33 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Revert'] = 'Буцаах';
|
||||
$lang['Combine JS&CSS'] = 'JS ба CSS-г нэгтгэх';
|
||||
$lang['Quick edit'] = 'Засах';
|
||||
$lang['View as'] = 'Харах';
|
||||
$lang['Save'] = 'Хадгалах';
|
||||
$lang['Saved'] = 'Амжилттай хадгаллаа';
|
||||
$lang['left'] = 'зүүн';
|
||||
$lang['right'] = 'баруун';
|
||||
$lang['Closed icon position'] = 'Хаагдсан дүрслэлийн байршил';
|
||||
$lang['Show SQL queries'] = 'SQL query хүсэлтийг харуулах';
|
||||
$lang['Save visit in history'] = 'Хандалтыг бүртгэж хадгалах';
|
||||
@@ -1 +0,0 @@
|
||||
Gjør noen admin-oppgaver fra offentlige sider
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Kombiner JS&CSS';
|
||||
$lang['Debug languages'] = 'Feilsøkingspråk';
|
||||
$lang['Debug template'] = 'Feilsøking tema';
|
||||
$lang['Properties page'] = 'Egenskapersiden';
|
||||
$lang['Quick edit'] = 'Rask endring';
|
||||
$lang['Revert'] = 'Omgjøre';
|
||||
$lang['Save'] = 'Lagre';
|
||||
$lang['Save visit in history'] = 'Lagre besøkshistorie';
|
||||
$lang['Saved'] = 'Lagret';
|
||||
$lang['Show SQL queries'] = 'Vis SQL spørringer';
|
||||
$lang['View as'] = 'Se alle';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Se som <b>%s</b>.';
|
||||
$lang['Closed icon position'] = 'Låst ikonposisjon';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Gi tilgang til hurtigredigering av bildeeier, selv om de ikke er admin';
|
||||
$lang['Open toolbar by default'] = 'Åpne verktøy automatisk';
|
||||
$lang['left'] = 'venstre';
|
||||
$lang['right'] = 'høyre';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Doe enkele admin-taken vanaf de openbare pagina's
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Debug languages'] = 'Identificeren en verwijderen van (Debug) taalfouten';
|
||||
$lang['Debug template'] = 'Identificeren en verwijderen van (Debug) themafouten';
|
||||
$lang['Properties page'] = 'Eigenschappen-pagina';
|
||||
$lang['Revert'] = 'Terugdraaien';
|
||||
$lang['Save'] = 'Bewaren';
|
||||
$lang['Save visit in history'] = 'Bewaar bezoek in geschiedenis';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Bekijken als <b>%s</b>.';
|
||||
$lang['Show SQL queries'] = 'Toon SQL queries';
|
||||
$lang['View as'] = 'Bekijk als';
|
||||
$lang['Quick edit'] = 'Snel bewerken';
|
||||
$lang['Combine JS&CSS'] = 'Combineer JS&CSS';
|
||||
$lang['Saved'] = 'Opgeslagen';
|
||||
$lang['Closed icon position'] = 'Positie van pictogram gesloten';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Geef foto-eigenaren toegang tot Snel bewerken, zelfs als ze geen administrator zijn.';
|
||||
$lang['Open toolbar by default'] = 'Open standaard de werkbalk';
|
||||
$lang['left'] = 'links';
|
||||
$lang['right'] = 'rechts';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Wykonuj niektóre zadania admina wprost z ogólnodostępnych stron
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,39 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Połącz JS&CSS';
|
||||
$lang['Debug languages'] = 'Języki debugowania';
|
||||
$lang['Debug template'] = 'Wzory debugowania';
|
||||
$lang['Properties page'] = 'Ustawienia';
|
||||
$lang['Quick edit'] = 'Szybka edycja';
|
||||
$lang['Revert'] = 'Odwróć';
|
||||
$lang['Save'] = 'Zapisz';
|
||||
$lang['Save visit in history'] = 'Zapisz odwiedziny w historii';
|
||||
$lang['Saved'] = 'Zapisano';
|
||||
$lang['Show SQL queries'] = 'Pokaż zapytania SQL';
|
||||
$lang['View as'] = 'Zobacz jako';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Oglądasz jako <b>%s</b>';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Przyznaj dostęp do szybkiej edycji właścicielom zdjęć nawet, gdy nie są administratorami';
|
||||
$lang['Open toolbar by default'] = 'Domyślnie otwieraj pasek narzędzi';
|
||||
$lang['left'] = 'lewo';
|
||||
$lang['right'] = 'prawo';
|
||||
$lang['Closed icon position'] = 'Stała pozycja ikony.';
|
||||
@@ -1 +0,0 @@
|
||||
Faça algumas tarefas de administração a partir das páginas públicas
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Combinar JS&CSS';
|
||||
$lang['Debug languages'] = 'Depurar idiomas';
|
||||
$lang['Debug template'] = 'Depurar modelo';
|
||||
$lang['Properties page'] = 'Página de propriedades';
|
||||
$lang['Quick edit'] = 'Edição rápida';
|
||||
$lang['Revert'] = 'Reverter';
|
||||
$lang['Save'] = 'Salvar';
|
||||
$lang['Save visit in history'] = 'Salvar visita na história';
|
||||
$lang['Show SQL queries'] = 'Mostrar consultas SQL';
|
||||
$lang['View as'] = 'Visualizar como';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Visulaizar como <b>%s</b>';
|
||||
$lang['Saved'] = 'Salvo';
|
||||
$lang['Closed icon position'] = 'Posição ícone Fechado';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Dar acesso a edição rápida para proprietários de fotografias, mesmo se eles não forem admin';
|
||||
$lang['Open toolbar by default'] = 'Abrir barra de ferramentas por padrão';
|
||||
$lang['left'] = 'esquerda';
|
||||
$lang['right'] = 'direita';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Faça alguma tarefa administrativa das páginas públicas
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Combinar JS e CSS';
|
||||
$lang['Debug languages'] = 'Corrigir bugs em idiomas';
|
||||
$lang['Debug template'] = 'Corrigir bugs em templates';
|
||||
$lang['Properties page'] = 'Página de propriedades';
|
||||
$lang['Quick edit'] = 'Editar rápido';
|
||||
$lang['Revert'] = 'Reverter';
|
||||
$lang['Save'] = 'Salvar';
|
||||
$lang['Save visit in history'] = 'Salvar visita no historial';
|
||||
$lang['Show SQL queries'] = 'Mostrar consultas SQL';
|
||||
$lang['View as'] = 'Ver como';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Vendo como <b>%s</b>.';
|
||||
$lang['Saved'] = 'Salvo';
|
||||
$lang['Closed icon position'] = 'Posição do icon encerrada';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Permite acesso aos proprietários da foto para edição rápida mesmo não sendo administradores';
|
||||
$lang['Open toolbar by default'] = 'Abrir, por defeito, a barra de ferramentas ';
|
||||
$lang['left'] = 'Esquerda';
|
||||
$lang['right'] = 'Direita';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Execută anumite sarcini administrative din paginile publice
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
$lang['Combine JS&CSS'] = 'Combină JS&CSS';
|
||||
$lang['Debug languages'] = 'Depanare limbă';
|
||||
$lang['Debug template'] = 'Depanare șablon';
|
||||
$lang['Properties page'] = 'Pagină de proprietăți';
|
||||
$lang['Quick edit'] = 'Editare rapidă';
|
||||
$lang['Revert'] = 'Revenire';
|
||||
$lang['Save'] = 'Salvează';
|
||||
$lang['Save visit in history'] = 'Salvează vizita în istoric';
|
||||
$lang['Saved'] = 'Salvat';
|
||||
$lang['Show SQL queries'] = 'Arată interogările SQL';
|
||||
$lang['View as'] = 'Vizualizează ca';
|
||||
$lang['Viewing as <b>%s</b>.'] = 'Vizualizare ca <b>%s</b>.';
|
||||
$lang['Closed icon position'] = 'Pozitia pictogramelor inchisa';
|
||||
$lang['right'] = 'Dreapta';
|
||||
$lang['left'] = 'Stanga';
|
||||
$lang['Open toolbar by default'] = 'Deschide implicit bara de instrumente';
|
||||
$lang['Give access to quick edit to photo owners even if they are not admin'] = 'Ofera detinatorilor de fotografii dreptul de a edita, chiar daca nu sunt administratori';
|
||||
?>
|
||||
@@ -1 +0,0 @@
|
||||
Позволяет выполнять некоторые администраторские функции с публичных страниц
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
$url = '../';
|
||||
header( 'Request-URI: '.$url );
|
||||
header( 'Content-Location: '.$url );
|
||||
header( 'Location: '.$url );
|
||||
exit();
|
||||
?>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user