File: hu_hu.pm

package info (click to toggle)
libhtml-formhandler-perl 0.40057-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,320 kB
  • ctags: 685
  • sloc: perl: 8,849; makefile: 2
file content (128 lines) | stat: -rw-r--r-- 5,353 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package HTML::FormHandler::I18N::hu_hu;
# ABSTRACT: Hungarian message file

use strict;
use warnings;
use utf8;
use base 'HTML::FormHandler::I18N';

# translator: Csaba Hetényi
# notify before release: cub@cpan.org

# Auto define lexicon
our %Lexicon = (
    '_AUTO' => 1,

    # H:: F:: Field
    'field is invalid' => 'A mező érvénytelen',
    'Wrong value' => 'Rossz érték',
#   '[_1] does not match' => '...',
#   '[_1] not allowed' => '...',
    'Value must be between [_1] and [_2]'         => 'az érték [_1] és [_2] között legyen',
    'Value must be greater than or equal to [_1]' => 'az érték nagyobb vagy egyenlő legyen: [_1]',
    'Value must be less than or equal to [_1]'    => 'az érték kisebb vagy egyenlő legyen: [_1]',
    '[_1] field is required'                      => 'A [_1] mező szükséges',
#   'error occurred' => '...',


    # H:: F:: Types
    'Must be a positive number'                                 => 'Pozitív szám szükséges',
    'Must be a positive integer'                                => 'Pozitív egész szám szükséges',
    'Must be a negative number'                                 => 'Negatív szám szükséges',
    'Must be a negative integer'                                => 'Negatív egész szám szükséges',
    'Must be a single digit'                                    => 'Egy számjegy szükséges',
    'Must be a single line of no more than 255 chars'           => 'Egy sor legyen és ne legyen több 255 karakternél',
    'Must be a non-empty single line of no more than 255 chars' => 'Nem lehet üres sor és nem lehet több 255 karakternél',
    'Must be between 4 and 255 chars'                           => '4 és 255 karakter közt legyen',
    'Not a valid state'                                         => 'Érvénytelen állapot',
    'Email is not valid'                                        => 'Az email cím nem megfelelő',
    'Zip is not valid'                                          => 'Az irányítószám nem megfelelő',
    'Not a valid IP address'                                    => 'Az IP cím nem megfelelő',
    'Must contain spaces'                                       => 'Nem tartalmazhat szóközt',
    'Must be made up of letters, digits, and underscores'       => 'Csak betűket, számokat és alulvonást tartalmazhat',
    'Must not be all digits'                                    => 'Nem csak számok szükségesek',
    'Field contains non-printable characters'                   => 'A mező nem nyomtatható karaktert tartalmaz',
    'Field must contain a single word'                          => 'A mező csak egy szót tartalmazhat',
#   'Must not be empty' => '...',
#   'Must be between 8 and 255 chars, and contain a non-alpha char' => '...',

    # H::F::Field::Date
    'Date is too early' => 'A dátum túl korai',
    'Date is too late'  => 'A dátum túl késő',

    # H::F::Field::DateTime
    'Not a valid DateTime' => 'Érvénytelen formátum',

    # H::F::Field::Duration
#   'Invalid value for [_1]: [_2]' => '.....',

    # H::F::Field::Email
    'Email should be of the format [_1]' => 'Az email [_1] formátumú legyen',

    # H::F::Field::Integer
    'Value must be an integer' => 'Az érték egész szám legyen',

    # H::F::Field::Money
    'Value cannot be converted to money' => 'Az érték nem alakítható pénz formátumra',
    'Value must be a real number'        => 'Az érték valós szám kell legyen',

    # H::F::Field::Password
    'Please enter a password in this field' => 'Légyszíves adj meg jelszót ebben a mezőben',
#   'Password must not match [_1]' => '....',

    # H::F::Field::PasswordConf
    'Please enter a password confirmation' => 'Jelszó megerősítése',
#   'The password confirmation does not match the password' => '...',

    # H::F::Field::PosInteger
    'Value must be a positive integer' => 'Pozitív egész szám szükséges',

    # H::F::Field::Select
    'This field does not take multiple values' => 'Ez a mező csak egy értéket kaphat',
#   '\'[_1]\' is not a valid value' => '...',

    # H::F::Field::Text
    'Field should not exceed [quant,_1,character]. You entered [_2]'        => 'A maximális hossz: [_1] karakter. A tiéd pedig: [_2]',
    'Field must be at least [quant,_1,character]. You entered [_2]' => 'A minimális hossz: [_1] karakter. A tiéd pedig: [_2]',

    # H:: F:: Field:: Upload
    'File uploaded is empty'          => 'A feltöltött fájl üres',
    'File is too small (< [_1] bytes)' => 'A fájl túl kicsi (<[_1] byte)',
    'File is too big (> [_1] bytes)'  => 'A fájl túl nagy (>[_1] byte)',
#   'File not found for upload field' => '...',

    # H:: F:: Model
    'Value must be unique in the database' => 'Az érték egyedi kell legyen az adatbázisban',

    # Other
    'Your datetime does not match your pattern.' => 'A datetime érték nem illeszkedik a mintára.',
);

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

HTML::FormHandler::I18N::hu_hu - Hungarian message file

=head1 VERSION

version 0.40057

=head1 AUTHOR

FormHandler Contributors - see HTML::FormHandler

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Gerda Shank.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut