Move key "Translation" into main file.
Add direct link to edit on transifex
This commit is contained in:
parent
5b880cf45f
commit
3a97a3e2ad
@ -227,7 +227,9 @@ else
|
||||
|
||||
print load_fiche_titre($langs->trans("Translation"), $enabledisablehtml, 'title_setup');
|
||||
|
||||
//print '<span class="opacitymedium">';
|
||||
print $langs->trans("TranslationDesc")."<br>\n";
|
||||
//print '</span>';
|
||||
print "<br>\n";
|
||||
|
||||
$current_language_code=$langs->defaultlang;
|
||||
@ -320,7 +322,7 @@ if ($mode == 'overwrite')
|
||||
$sql = "SELECT rowid, entity, lang, transkey, transvalue";
|
||||
$sql.= " FROM ".MAIN_DB_PREFIX."overwrite_trans";
|
||||
$sql.= " WHERE 1 = 1";
|
||||
//$sql.= " AND entity IN (".$user->entity.",".$conf->entity.")";
|
||||
$sql.= " AND entity IN (".getEntity('overwrite_trans').")";
|
||||
$sql.= $db->order($sortfield, $sortorder);
|
||||
|
||||
dol_syslog("translation::select from table", LOG_DEBUG);
|
||||
@ -513,7 +515,7 @@ if ($mode == 'searchkey')
|
||||
$sql = "SELECT rowid";
|
||||
$sql.= " FROM " . MAIN_DB_PREFIX . "overwrite_trans";
|
||||
$sql.= " WHERE transkey = '".$key."'";
|
||||
$sql.= " AND entity IN (" . $user->entity . ", " . $conf->entity . ")";
|
||||
$sql.= " AND entity IN (" . getEntity('overwrite_trans') . ")";
|
||||
dol_syslog("translation::select from table", LOG_DEBUG);
|
||||
$result = $db->query($sql);
|
||||
if ($result)
|
||||
@ -529,7 +531,15 @@ if ($mode == 'searchkey')
|
||||
}
|
||||
else if (!empty($conf->global->MAIN_ENABLE_OVERWRITE_TRANSLATION))
|
||||
{
|
||||
print '<a href="' . $_SERVER['PHP_SELF'] . '?mode=overwrite&langcode=' . $langcode . '&transkey=' . $key . '">' . img_edit() . '</a>';
|
||||
//print $key.'-'.$val;
|
||||
print '<a href="' . $_SERVER['PHP_SELF'] . '?mode=overwrite&langcode=' . $langcode . '&transkey=' . $key . '">' . img_edit_add($langs->trans("Overwrite")) . '</a>';
|
||||
}
|
||||
|
||||
if (! empty($conf->global->MAIN_FEATURES_LEVEL))
|
||||
{
|
||||
$transifexlangfile='$'; // $ means 'All'
|
||||
$transifexurl = 'https://www.transifex.com/dolibarr-association/dolibarr/translate/#'.$langcode.'/'.$transifexlangfile.'?key='.$key;
|
||||
print ' <a href="'.$transifexurl.'" target="transifex">'.img_picto('FixOnTransifex', 'object_globe').'</a>';
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
@ -771,6 +771,7 @@ Calendar=Calendrier
|
||||
GroupBy=Grouper par...
|
||||
ViewFlatList=Voir vue liste
|
||||
RemoveString=Supprimer la chaine '%s'
|
||||
Translation=Traduction
|
||||
SomeTranslationAreUncomplete=Certains languages pourraient n'être que partiellement traduis, ou contenir des erreurs. Si vous en détectez, vous pouvez les corriger en vous enregistrant sur <a href="https://transifex.com/projects/p/dolibarr/" target="_blank">https://transifex.com/projects/p/dolibarr/</a>
|
||||
DirectDownloadLink=Lien de téléchargement direct
|
||||
Download=Téléchargement
|
||||
|
||||
@ -100,7 +100,6 @@ ParentProductsNumber=Nbre de produits virtuels/packages parent
|
||||
ParentProducts=Produits parents
|
||||
IfZeroItIsNotAVirtualProduct=Si 0, ce produit n'est pas un produit virtuel
|
||||
IfZeroItIsNotUsedByVirtualProduct=Si 0, ce produit n'est pas utilisé par un produit virtuel
|
||||
Translation=Traduction
|
||||
KeywordFilter=Filtre par mot-clé
|
||||
CategoryFilter=Filtre par catégorie
|
||||
ProductToAddSearch=Recherche des produits à ajouter
|
||||
|
||||
Loading…
Reference in New Issue
Block a user