27 lines
1.3 KiB
PHP
27 lines
1.3 KiB
PHP
<?php
|
|
|
|
// ////////////////////// SOUBOR S TEXTY V ESHOPU ///////////////////////////
|
|
// ********************************************************************** //
|
|
// CONFIG SOUBOR JAZYKOVYCH TEXTU JE SOUBOREM PHP //
|
|
// RADKY ZAKOMENTUJETE ZNACKAMI // NEBO # //
|
|
// NEPOUZIVEJTE JEDNODUCHE UVOZOVKY, POUZE DVOJITE //
|
|
// ********************************************************************** //
|
|
// //////////////////////////////////////////////////////////////////////////
|
|
|
|
/*
|
|
* ======================================================================
|
|
* obecne chybove hlasky
|
|
* ======================================================================.
|
|
*/
|
|
$txt_str['errors'][200] = 'OK';
|
|
$txt_str['errors'][204] = 'No data to respond';
|
|
$txt_str['errors'][206] = 'Requested update but could not update item becasuse requested id does not exist. Item was inserted as new one.';
|
|
$txt_str['errors'][400] = 'Bad request parameter';
|
|
$txt_str['errors'][401] = 'Unauthorized';
|
|
$txt_str['errors'][403] = 'Unauthorized user';
|
|
$txt_str['errors'][404] = 'Not found';
|
|
$txt_str['errors'][406] = 'Date from not specified';
|
|
$txt_str['errors'][500] = 'Internal error';
|
|
|
|
require $cfg['Path']['shared_version'].'web/lang/lang.cs.php';
|