added some public profile translations
This commit is contained in:
@ -9709,11 +9709,13 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1962', 'ES', 'cerca de', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1963', 'ES', 'Acerca de Opencaching', '2010-12-09 00:17:56');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1968', 'ES', 'más', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1999', 'ES', 'Mostrar', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2002', 'ES', 'Geocaches encontrados', '2010-12-09 00:17:57');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2020', 'ES', 'disponible', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2021', 'ES', 'temporalmente no disponible', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2023', 'ES', 'cerrado', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2024', 'ES', 'cerrado, invisible', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2090', 'ES', 'Archivado', '2013-02-19 05:48:07');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2104', 'ES', 'de las coordenadas:', '2010-12-09 00:17:59');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2105', 'ES', 'Entradas de Logs', '2010-12-09 00:17:56');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2109', 'ES', ' {results_count} caches<span style=\"{search_headline_caches}\"> encontrados</span>', '2010-12-09 00:18:00');
|
||||
@ -11341,6 +11343,7 @@ INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUE
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1995', 'IT', 'Opencaching su Twitter', '2013-05-28 16:52:39');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1996', 'IT', 'Il sito web visitato <b>%1</b> non esiste, abbiamo trovato le seguenti pagine:', '2013-05-28 16:52:39');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1998', 'IT', 'OK', '2013-05-28 16:52:39');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('1999', 'IT', 'Visualizza', '2013-07-25 15:53:16');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2000', 'IT', 'Il mio ultimo log', '2013-05-28 16:52:39');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2001', 'IT', 'Logs propri', '2013-05-28 16:52:39');
|
||||
INSERT INTO `sys_trans_text` (`trans_id`, `lang`, `text`, `last_modified`) VALUES ('2002', 'IT', 'Geocaches trovate', '2010-09-01 23:48:28');
|
||||
|
@ -40,7 +40,7 @@
|
||||
`user`.`latitude`,
|
||||
`user`.`longitude`,
|
||||
`user`.`data_license`,
|
||||
`countries`.`de` AS `country`,
|
||||
IFNULL(`sys_trans_text`.`text`,`countries`.`de`) AS `country`,
|
||||
`stat_user`.`hidden`,
|
||||
`stat_user`.`found`,
|
||||
`stat_user`.`notfound`,
|
||||
@ -49,8 +49,9 @@
|
||||
`user`.`uuid`
|
||||
FROM `user`
|
||||
LEFT JOIN `stat_user` ON `user`.`user_id`=`stat_user`.`user_id`
|
||||
LEFT JOIN `countries` ON `user`.`country`=`countries`.`short`
|
||||
WHERE `user`.`user_id`='&1'", $userid);
|
||||
LEFT JOIN `countries` ON `user`.`country`=`countries`.`short`
|
||||
LEFT JOIN `sys_trans_text` ON `sys_trans_text`.`lang`='&2' AND `sys_trans_text`.`trans_id`=`countries`.`trans_id`
|
||||
WHERE `user`.`user_id`='&1'", $userid, $opt['template']['locale']);
|
||||
$record = sql_fetch_array($rs);
|
||||
sql_free_result($rs);
|
||||
|
||||
|
Reference in New Issue
Block a user