diff options
-rw-r--r-- | language/sl_SI/common.lang.php | 3 | ||||
-rw-r--r-- | language/sl_SI/index.php | 7 |
2 files changed, 10 insertions, 0 deletions
diff --git a/language/sl_SI/common.lang.php b/language/sl_SI/common.lang.php index 0435fecea..d0f6d7b40 100644 --- a/language/sl_SI/common.lang.php +++ b/language/sl_SI/common.lang.php @@ -407,4 +407,7 @@ $lang['Forbidden'] = 'Prepovedan dostop'; $lang['Page not found'] = 'Stran ne obstaja'; $lang['Requested album does not exist'] = 'Zahtevan album ne obstaja'; $lang['Requested tag does not exist'] = 'Zahtevan tag ne obstaja'; +$lang['Bad request'] = 'Nepravilna zahteva'; +$lang['Permalink for album not found'] = 'Stalne povezave za album ni bilo mogoče najti'; +$lang['Piwigo encountered a non recoverable error'] = 'Prišlo je do napake v Piwigo'; ?>
\ No newline at end of file diff --git a/language/sl_SI/index.php b/language/sl_SI/index.php new file mode 100644 index 000000000..ec6605317 --- /dev/null +++ b/language/sl_SI/index.php @@ -0,0 +1,7 @@ +<?php +$url = '../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?> |