File: //var/packages/FileStation/scripts/dumpstring
#!/bin/sh
DumpString()
{
local section="$1"
local key="$2"
case $SYNOPKG_DSM_LANGUAGE-$section-$key in
chs-error-alert_pkg_stop)
echo "这是内置的套件且不可停用。"
;;
chs-error-alert_pkg_uninstall)
echo "这是内置的套件且不可卸载。"
;;
cht-error-alert_pkg_stop)
echo "此為內建套件,無法停用。"
;;
cht-error-alert_pkg_uninstall)
echo "此為內建套件,無法解除安裝。"
;;
csy-error-alert_pkg_stop)
echo "Jedná se o vestavěný balíček, který není možné pozastavit."
;;
csy-error-alert_pkg_uninstall)
echo "Jedná se o vestavěný balíček, který není možné odinstalovat."
;;
dan-error-alert_pkg_stop)
echo "Dette er en indbygget pakke, som ikke kan standses."
;;
dan-error-alert_pkg_uninstall)
echo "Dette er en indbygget pakke, som ikke kan afinstalleres."
;;
enu-error-alert_pkg_stop)
echo "This is a built-in package and cannot be stopped."
;;
enu-error-alert_pkg_uninstall)
echo "This is a built-in package and cannot be uninstalled."
;;
fre-error-alert_pkg_stop)
echo "Il s'agit d'un paquet intégré qui ne peut pas être arrêté."
;;
fre-error-alert_pkg_uninstall)
echo "Il s'agit d'un paquet intégré qui ne peut pas être désinstallé."
;;
ger-error-alert_pkg_stop)
echo "Dies ist ein integriertes Paket, das nicht angehalten werden kann."
;;
ger-error-alert_pkg_uninstall)
echo "Dies ist ein integriertes Paket, das nicht deinstalliert werden kann."
;;
hun-error-alert_pkg_stop)
echo "Ez egy beépített csomag, így nem állítható le."
;;
hun-error-alert_pkg_uninstall)
echo "Ez egy beépített csomag, így nem távolítható el."
;;
ita-error-alert_pkg_stop)
echo "Questo pacchetto è integrato e non può essere arrestato."
;;
ita-error-alert_pkg_uninstall)
echo "Questo pacchetto è integrato e non può essere disinstallato."
;;
jpn-error-alert_pkg_stop)
echo "これは内蔵パッケージで、停止させることはできません。"
;;
jpn-error-alert_pkg_uninstall)
echo "これは内蔵パッケージで、アンインストールすることはできません。"
;;
krn-error-alert_pkg_stop)
echo "이는 내장된 패키지이며 중지시킬 수 없습니다."
;;
krn-error-alert_pkg_uninstall)
echo "이는 내장된 패키지이며 설치를 제거할 수 없습니다."
;;
nld-error-alert_pkg_stop)
echo "Dit is een geïntegreerd pakket en kan niet worden gestopt."
;;
nld-error-alert_pkg_uninstall)
echo "Dit is een geïntegreerd pakket en de installatie kan niet ongedaan worden gemaakt."
;;
nor-error-alert_pkg_stop)
echo "Dette er en innebygd pakke og kan ikke stoppes."
;;
nor-error-alert_pkg_uninstall)
echo "Dette er en innebygd pakke som ikke kan stoppes."
;;
plk-error-alert_pkg_stop)
echo "Jest to pakiet wbudowany i nie można go zatrzymać."
;;
plk-error-alert_pkg_uninstall)
echo "Jest to pakiet wbudowany i nie można go odinstalować."
;;
ptb-error-alert_pkg_stop)
echo "Este é um pacote integrado e não pode ser interrompido."
;;
ptb-error-alert_pkg_uninstall)
echo "Este é um pacote integrado e não pode ser desinstalado."
;;
ptg-error-alert_pkg_stop)
echo "Este é um pacote integrado e não poderá ser parado."
;;
ptg-error-alert_pkg_uninstall)
echo "Este é um pacote integrado e não poderá ser desinstalado."
;;
rus-error-alert_pkg_stop)
echo "Это встроенный компонент, работу которого невозможно остановить."
;;
rus-error-alert_pkg_uninstall)
echo "Это встроенный пакет, который невозможно удалить."
;;
spn-error-alert_pkg_stop)
echo "Este es un paquete integrado y no puede detenerse."
;;
spn-error-alert_pkg_uninstall)
echo "Este es un paquete integrado y no puede desinstalarse."
;;
sve-error-alert_pkg_stop)
echo "Det här är ett inbyggd filpaket som inte kan stoppas."
;;
sve-error-alert_pkg_uninstall)
echo "Det här är ett inbyggd filpaket som inte kan avinstalleras."
;;
tha-error-alert_pkg_stop)
echo "แพคเกจนี้คือแพคเกจในตัวเครื่องและไม่สามารถหยุดการทำงานได้"
;;
tha-error-alert_pkg_uninstall)
echo "แพคเกจนี้คือแพคเกจในตัวเครื่องและไม่สามารถยกเลิกการติดตั้งได้"
;;
trk-error-alert_pkg_stop)
echo "Bu dahili bir pakettir ve durdurulamaz."
;;
trk-error-alert_pkg_uninstall)
echo "Bu dahili bir pakettir ve kaldırılamaz."
;;
esac
return 0;
}