@@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mageia\n" "POT-Creation-Date: 2016-10-16 11:39+0200\n" -"PO-Revision-Date: 2017-11-24 16:50+0000\n" +"PO-Revision-Date: 2017-11-25 10:57+0000\n" "Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>\n" "Language-Team: Catalan (http://www.transifex.com/MageiaLinux/mageia/language/" "ca/)\n" @@ -189,7 +189,7 @@ msgstr "Paquet: " #: drakbug:107 #, c-format msgid "Kernel:" -msgstr "Nucli:" +msgstr "Kernel" #: drakbug:139 #, c-format @@ -346,7 +346,7 @@ msgstr "Zona horària" #: drakclock:117 #, c-format msgid "Please enter a valid NTP server address." -msgstr "Si us plau, introduïu una adreça vàlida per al servidor NTP." +msgstr "Introduïu una adreça vàlida per al servidor NTP." #: drakclock:141 #, c-format @@ -459,27 +459,27 @@ msgid "" "Are you really sure that you want to restart the dm service?" msgstr "" "Esteu a punt de tancar tots els programes en execució i perdre la sessió " -"actual. Esteu segurs que voleu reiniciar el servei dm?" +"actual. Esteu segur que voleu reiniciar el servei dm?" #: drakfont:187 #, c-format msgid "Search installed fonts" -msgstr "Cerca els tipus de lletra instal·lats" +msgstr "Cerca les lletres instal·lades" #: drakfont:189 #, c-format msgid "Unselect fonts installed" -msgstr "Desselecciona els tipus de lletra instal·lats" +msgstr "Desselecciona les lletres instal·lades" #: drakfont:213 #, c-format
foreach ($this->base_path_provider as $path)
{
if ($path && !phpbb_is_absolute($path))
{
$directories = array_merge($directories, $finder
->directory('/' . $this->ext_dir_prefix . $path)
->get_directories()
);
}
}
foreach ($this->base_path_provider as $path)
{
$directories[] = $path;
}
return $directories;
}
/**
* Overwrites the current template names and paths
*
* @param array $templates An associative map from template names to paths.
* The first element is the main template.
* If the path is false, it will be generated from
* the supplied name.
* @param string $style_root_path The root directory for styles identified
* by name only.
* @return null
*/
public function set_templates(array $templates, $style_root_path)
{
$this->base_path_provider->set_templates($templates, $style_root_path);
$this->items = null;
}
/**
* Retrieves the path to the main template passed into set_templates()
*
* @return string Main template path
*/
public function get_main_template_path()
{
return $this->base_path_provider->get_main_template_path();
}
}
|