mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
28 lines
1.4 KiB
PHP
28 lines
1.4 KiB
PHP
<?php
|
|
// This is a SPIP language file -- Ceci est un fichier langue de SPIP
|
|
// extrait automatiquement de http://trad.spip.net/tradlang_module/compresseur?lang_cible=en
|
|
// ** ne pas modifier le fichier **
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) return;
|
|
|
|
$GLOBALS[$GLOBALS['idx_lang']] = array(
|
|
|
|
// I
|
|
'info_compresseur_titre' => 'Optimisation and compression',
|
|
'info_question_activer_compactage_css' => 'CSS',
|
|
'info_question_activer_compactage_js' => 'Scripts',
|
|
'info_question_activer_compresseur' => 'HTML',
|
|
'item_compresseur_closure' => 'Use Google Closure Compiler [experimental]',
|
|
'item_compresseur_css' => 'Enable stylesheets compression (CSS)',
|
|
'item_compresseur_html' => 'Enable HTML compression',
|
|
'item_compresseur_js' => 'Enable scripts compression (javascript)',
|
|
|
|
// T
|
|
'texte_compacter_avertissement' => 'Be careful not to activate these options during site development, as compressed elements are difficult to read and debug.',
|
|
'texte_compacter_script_css' => 'SPIP can compact Javascript files and CSS stylesheets and save them as static files. This makes the site display faster on browsers.',
|
|
'texte_compresseur_page' => 'SPIP can automatically compress every page it sends. This option reduces bandwidth, making the site faster for lower speed connections), but it does require more resources from the server.',
|
|
'titre_compacter_script_css' => 'Compression of scripts and CSS',
|
|
'titre_compresser_flux_http' => 'HTML compression'
|
|
);
|
|
|
|
?>
|