Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * Validation Lines * The following language lines contain the default error me..

Decoded Output download

<?php
/**
 * Validation Lines
 * The following language lines contain the default error messages used by
 * the validator class. Some of these rules have multiple versions such
 * as the size rules. Feel free to tweak each of these messages here.
 */
return [

    // Standard laravel validation lines
    'accepted'             => ':attribute mora biti prihvaen.',
    'active_url'           => ':attribute nije ispravan URL.',
    'after'                => ':attribute mora biti datum nakon :date.',
    'alpha'                => ':attribute moe sadravati samo slova.',
    'alpha_dash'           => ':attribute moe sadravati samo slova, brojeve, crtice i donje crtice.',
    'alpha_num'            => ':attribute moe sadravati samo slova i brojeve.',
    'array'                => ':attribute mora biti niz.',
    'backup_codes'         => 'The provided code is not valid or has already been used.',
    'before'               => ':attribute mora biti datum prije :date.',
    'between'              => [
        'numeric' => ':attribute mora biti izmeu :min i :max.',
        'file'    => ':attribute mora biti izmeu :min i :max kilobajta.',
        'string'  => ':attribute mora biti izmeu :min i :max karaktera.',
        'array'   => ':attribute mora imati izmeu :min i :max stavki.',
    ],
    'boolean'              => ':attribute polje mora biti tano ili netano.',
    'confirmed'            => ':attribute potvrda se ne slae.',
    'date'                 => ':attribute nije ispravan datum.',
    'date_format'          => ':attribute ne odgovara formatu :format.',
    'different'            => ':attribute i :other moraju biti razliiti.',
    'digits'               => ':attribute mora imati :digits brojeve.',
    'digits_between'       => ':attribute mora imati izmeu :min i :max brojeva.',
    'email'                => ':attribute mora biti ispravna e-mail adresa.',
    'ends_with' => ':attribute mora zavravati sa jednom od sljedeih: :values',
    'file'                 => 'The :attribute must be provided as a valid file.',
    'filled'               => 'Polje :attribute je obavezno.',
    'gt'                   => [
        'numeric' => ':attribute mora biti vei od :value.',
        'file'    => ':attribute mota biti vei od :value kilobajta.',
        'string'  => ':attribute mora imati vie od :value karaktera.',
        'array'   => ':attribute mora imati vie od :value stavki.',
    ],
    'gte'                  => [
        'numeric' => ':attribute mora biti vei od ili jednak :value.',
        'file'    => ':attribute mora imati vie od ili jednako :value kilobajta.',
        'string'  => ':attribute mora imati vie od ili jednako :value karaktera.',
        'array'   => ':attribute mora imati :value stavki ili vie.',
    ],
    'exists'               => 'Odabrani :attribute je neispravan.',
    'image'                => ':attribute mora biti slika.',
    'image_extension'      => ':attribute mora imati ispravnu i podranu ekstenziju slike.',
    'in'                   => 'Odabrani :attribute je neispravan.',
    'integer'              => ':attribute mora biti integer.',
    'ip'                   => ':attribute mora biti ispravna IP adresa.',
    'ipv4'                 => ':attribute mora biti ispravna IPv4 adresa.',
    'ipv6'                 => ':attribute mora biti ispravna IPv6 adresa.',
    'json'                 => ':attribute mora biti ispravan JSON string.',
    'lt'                   => [
        'numeric' => ':attribute mora biti manji od :value.',
        'file'    => ':attribute mora imati manje od :value kilobajta.',
        'string'  => ':attribute mora imati manje od :value karaktera.',
        'array'   => ':attribute mora imati manje od :value stavki.',
    ],
    'lte'                  => [
        'numeric' => ':attribute mora imati vrijednost manju od ili jednaku :value.',
        'file'    => ':attribute mora imati manje od ili jednako :value kilobajta.',
        'string'  => ':attribute mora imati manje od ili jednako :value karaktera.',
        'array'   => ':attribute ne smije imati vie od :value stavki.',
    ],
    'max'                  => [
        'numeric' => ':attribute ne moe biti vei od :max.',
        'file'    => ':attribute ne moe imati vie od :max kilobajta.',
        'string'  => ':attribute ne moe imati vie od :max karaktera.',
        'array'   => ':attribute ne moe imati vie od :max stavki.',
    ],
    'mimes'                => ':attribute mora biti fajl vrste: values.',
    'min'                  => [
        'numeric' => ':attribute mora biti najmanje :min.',
        'file'    => ':attribute mora imati najmanje :min kilobajta.',
        'string'  => ':attribute mora imati najmanje :min karaktera.',
        'array'   => ':attribute mora imati najmanje :min stavki.',
    ],
    'not_in'               => 'Odabrani :attribute je neispravan.',
    'not_regex'            => 'Format :attribute je neispravan.',
    'numeric'              => ':attribute mora biti broj.',
    'regex'                => 'Format :attribute je neispravan.',
    'required'             => 'Polje :attribute je obavezno.',
    'required_if'          => 'Polje :attribute je obavezno kada :other ima vrijednost :value.',
    'required_with'        => 'Polje :attribute je obavezno kada su prisutne :values.',
    'required_with_all'    => 'Polje :attribute je obavezno kada su prisutne :values.',
    'required_without'     => 'Polje :attribute je obavezno kada :values nisu prisutne.',
    'required_without_all' => 'Polje :attribute je obavezno kada nijedno od :values nije prisutno.',
    'same'                 => ':attribute i :other se moraju poklapati.',
    'safe_url'             => 'Navedeni link moda nije siguran.',
    'size'                 => [
        'numeric' => ':attribute mora biti :size.',
        'file'    => ':attribute mora imati :size kilobajta.',
        'string'  => ':attribute mora imati :size karaktera.',
        'array'   => ':attribute mora sadravati :size stavki.',
    ],
    'string'               => ':attribute mora biti string.',
    'timezone'             => ':attribute mora biti ispravna zona.',
    'totp'                 => 'The provided code is not valid or has expired.',
    'unique'               => ':attribute je zauzet.',
    'url'                  => 'Format :attribute je neispravan.',
    'uploaded'             => 'Fajl nije uitan. Server ne prihvata fajlove ove veliine.',

    // Custom validation lines
    'custom' => [
        'password-confirm' => [
            'required_with' => 'Zahtijeva se potvrda lozinke',
        ],
    ],

    // Custom validation attributes
    'attributes' => [],
];
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Validation Lines
 * The following language lines contain the default error messages used by
 * the validator class. Some of these rules have multiple versions such
 * as the size rules. Feel free to tweak each of these messages here.
 */
return [

    // Standard laravel validation lines
    'accepted'             => ':attribute mora biti prihvaen.',
    'active_url'           => ':attribute nije ispravan URL.',
    'after'                => ':attribute mora biti datum nakon :date.',
    'alpha'                => ':attribute moe sadravati samo slova.',
    'alpha_dash'           => ':attribute moe sadravati samo slova, brojeve, crtice i donje crtice.',
    'alpha_num'            => ':attribute moe sadravati samo slova i brojeve.',
    'array'                => ':attribute mora biti niz.',
    'backup_codes'         => 'The provided code is not valid or has already been used.',
    'before'               => ':attribute mora biti datum prije :date.',
    'between'              => [
        'numeric' => ':attribute mora biti izmeu :min i :max.',
        'file'    => ':attribute mora biti izmeu :min i :max kilobajta.',
        'string'  => ':attribute mora biti izmeu :min i :max karaktera.',
        'array'   => ':attribute mora imati izmeu :min i :max stavki.',
    ],
    'boolean'              => ':attribute polje mora biti tano ili netano.',
    'confirmed'            => ':attribute potvrda se ne slae.',
    'date'                 => ':attribute nije ispravan datum.',
    'date_format'          => ':attribute ne odgovara formatu :format.',
    'different'            => ':attribute i :other moraju biti razliiti.',
    'digits'               => ':attribute mora imati :digits brojeve.',
    'digits_between'       => ':attribute mora imati izmeu :min i :max brojeva.',
    'email'                => ':attribute mora biti ispravna e-mail adresa.',
    'ends_with' => ':attribute mora zavravati sa jednom od sljedeih: :values',
    'file'                 => 'The :attribute must be provided as a valid file.',
    'filled'               => 'Polje :attribute je obavezno.',
    'gt'                   => [
        'numeric' => ':attribute mora biti vei od :value.',
        'file'    => ':attribute mota biti vei od :value kilobajta.',
        'string'  => ':attribute mora imati vie od :value karaktera.',
        'array'   => ':attribute mora imati vie od :value stavki.',
    ],
    'gte'                  => [
        'numeric' => ':attribute mora biti vei od ili jednak :value.',
        'file'    => ':attribute mora imati vie od ili jednako :value kilobajta.',
        'string'  => ':attribute mora imati vie od ili jednako :value karaktera.',
        'array'   => ':attribute mora imati :value stavki ili vie.',
    ],
    'exists'               => 'Odabrani :attribute je neispravan.',
    'image'                => ':attribute mora biti slika.',
    'image_extension'      => ':attribute mora imati ispravnu i podranu ekstenziju slike.',
    'in'                   => 'Odabrani :attribute je neispravan.',
    'integer'              => ':attribute mora biti integer.',
    'ip'                   => ':attribute mora biti ispravna IP adresa.',
    'ipv4'                 => ':attribute mora biti ispravna IPv4 adresa.',
    'ipv6'                 => ':attribute mora biti ispravna IPv6 adresa.',
    'json'                 => ':attribute mora biti ispravan JSON string.',
    'lt'                   => [
        'numeric' => ':attribute mora biti manji od :value.',
        'file'    => ':attribute mora imati manje od :value kilobajta.',
        'string'  => ':attribute mora imati manje od :value karaktera.',
        'array'   => ':attribute mora imati manje od :value stavki.',
    ],
    'lte'                  => [
        'numeric' => ':attribute mora imati vrijednost manju od ili jednaku :value.',
        'file'    => ':attribute mora imati manje od ili jednako :value kilobajta.',
        'string'  => ':attribute mora imati manje od ili jednako :value karaktera.',
        'array'   => ':attribute ne smije imati vie od :value stavki.',
    ],
    'max'                  => [
        'numeric' => ':attribute ne moe biti vei od :max.',
        'file'    => ':attribute ne moe imati vie od :max kilobajta.',
        'string'  => ':attribute ne moe imati vie od :max karaktera.',
        'array'   => ':attribute ne moe imati vie od :max stavki.',
    ],
    'mimes'                => ':attribute mora biti fajl vrste: values.',
    'min'                  => [
        'numeric' => ':attribute mora biti najmanje :min.',
        'file'    => ':attribute mora imati najmanje :min kilobajta.',
        'string'  => ':attribute mora imati najmanje :min karaktera.',
        'array'   => ':attribute mora imati najmanje :min stavki.',
    ],
    'not_in'               => 'Odabrani :attribute je neispravan.',
    'not_regex'            => 'Format :attribute je neispravan.',
    'numeric'              => ':attribute mora biti broj.',
    'regex'                => 'Format :attribute je neispravan.',
    'required'             => 'Polje :attribute je obavezno.',
    'required_if'          => 'Polje :attribute je obavezno kada :other ima vrijednost :value.',
    'required_with'        => 'Polje :attribute je obavezno kada su prisutne :values.',
    'required_with_all'    => 'Polje :attribute je obavezno kada su prisutne :values.',
    'required_without'     => 'Polje :attribute je obavezno kada :values nisu prisutne.',
    'required_without_all' => 'Polje :attribute je obavezno kada nijedno od :values nije prisutno.',
    'same'                 => ':attribute i :other se moraju poklapati.',
    'safe_url'             => 'Navedeni link moda nije siguran.',
    'size'                 => [
        'numeric' => ':attribute mora biti :size.',
        'file'    => ':attribute mora imati :size kilobajta.',
        'string'  => ':attribute mora imati :size karaktera.',
        'array'   => ':attribute mora sadravati :size stavki.',
    ],
    'string'               => ':attribute mora biti string.',
    'timezone'             => ':attribute mora biti ispravna zona.',
    'totp'                 => 'The provided code is not valid or has expired.',
    'unique'               => ':attribute je zauzet.',
    'url'                  => 'Format :attribute je neispravan.',
    'uploaded'             => 'Fajl nije uitan. Server ne prihvata fajlove ove veliine.',

    // Custom validation lines
    'custom' => [
        'password-confirm' => [
            'required_with' => 'Zahtijeva se potvrda lozinke',
        ],
    ],

    // Custom validation attributes
    'attributes' => [],
];

Function Calls

None

Variables

None

Stats

MD5 c47568256f695594837f69493beb9966
Eval Count 0
Decode Time 94 ms