Plugin Directory

Changeset 631971

Timestamp:
11/29/2012 08:23:40 PM (12 years ago)
Author:
logikal16
Message:

CFS 1.7.8

Location:
custom-field-suite/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • custom-field-suite/trunk/cfs.php

    r624250 r631971  
    44Plugin URI: https://uproot.us/
    55Description: Visually add custom fields to your WordPress edit pages.
    6 Version: 1.7.7
     6Version: 1.7.
    77Author: Matt Gibbs
    88Author URI: https://uproot.us/
     
    1111
    1212$cfs = new Cfs();
    13 $cfs->version = '1.7.7';
     13$cfs->version = '1.7.';
    1414
    1515class Cfs
     
    2020    public $fields;
    2121    public $used_types;
     22
    2223    public $api;
    2324
     
    4041        include($this->dir . '/core/classes/upgrade.php');
    4142        include($this->dir . '/core/classes/field.php');
    42 
    43         // load the api
     43        include($this->dir . '/core/classes/form.php');
     44
     45        // load classes
    4446        $this->api = new cfs_Api($this);
     47
    4548
    4649        // add actions
     
    314317    {
    315318        return $this->api->get_reverse_related($post_id, $options);
     319
     320
     321
     322
     323
     324
     325
     326
     327
     328
     329
     330
     331
     332
     333
    316334    }
    317335
  • custom-field-suite/trunk/core/classes/api.php

    r619694 r631971  
    4545        {
    4646            $fields = $this->get_fields($post_id);
    47             return $fields[$field_name];
     47
     48            return isset($fields[$field_name]) ? $fields[$field_name] : null;
    4849        }
    4950
  • custom-field-suite/trunk/core/classes/form.php

    r614053 r631971  
    11<?php
    2 
    3 // This is a work in progress.
    42
    53class cfs_Form
     
    1412    public function create_form($options)
    1513    {
    16         $options = array(
    17             'post_id' => false,
    18             'post_title' => false,
    19             'post_status' => 'draft',
    20             'form' => array(
    21                 'title' => false,
    22                 'description' => false,
    23                 'groups' => array(
    24                     array(
    25                         'title' => false,
    26                         'description' => false,
    27                         'prev_button_text' => 'Previous',
    28                         'next_button_text' => 'Next',
    29                         'field_groups' => array(),
    30                         'fields' => array(
    31                             'first_field',
    32                             'second_field',
    33                             'third_field' => array(
    34                                 'label' => 'The Third Field',
    35                             ),
    36                         ),
    37                     ),
    38                     array(
    39                         'title' => false,
    40                         'description' => false,
    41                         'prev_button_text' => 'Previous',
    42                         'next_button_text' => 'Next',
    43                         'field_groups' => array(),
    44                         'fields' => array(
    45                             'first_field',
    46                             'second_field',
    47                             'third_field' => array(
    48                                 'label' => 'The Third Field',
    49                             ),
    50                         ),
    51                     ),
    52                 ),
    53             ),
    54         );
     14
    5515    }
    5616}
  • custom-field-suite/trunk/js/fields.js

    r614053 r631971  
    7979        // Auto-populate the field name
    8080        $('.field_form .field_label input').live('blur', function() {
     81
     82
     83
     84
     85
    8186            var name = $(this).closest('tr').find('.field_name input');
    8287            if ('' == name.val()) {
    83                 var val = $.trim($(this).val()).toLowerCase();
     88                va).toLowerCase();
    8489                val = val.replace(/[^\w- ]/g, ''); // strip invalid characters
    8590                val = val.replace(/[- ]/g, '_'); // replace space and hyphen with underscore
     
    9095        });
    9196
    92         $('.field_form .field_label input').live('keyup', function() {
    93             var val = $(this).val();
    94             $(this).closest('.field').find('.field_meta .field_label a').html(val);
     97        $('.field_form .field_label input').live('keyup paste', function() {
     98            var $this = $(this);
     99            setTimeout(function() {
     100                $this.closest('.field').find('.field_meta .field_label a').html($this.val());
     101            }, 1);
    95102        });
    96103
  • custom-field-suite/trunk/lang/cfs-hu_HU.po

    r609362 r631971  
    33"Project-Id-Version: Custom Field Suite v1.7.2\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: \n"
    6 "PO-Revision-Date: 2012-10-07 05:35:23+0000\n"
    7 "Last-Translator: Hutchington <hutchington@gmail.com>\n"
     5"POT-Creation-Date: \n"
     6"PO-Revision-Date: 2012-100\n"
     7"Last-Translator: <hutchington@gmail.com>\n"
    88"Language-Team: \n"
     9
    910"MIME-Version: 1.0\n"
    1011"Content-Type: text/plain; charset=UTF-8\n"
    1112"Content-Transfer-Encoding: 8bit\n"
    1213"Plural-Forms: nplurals=2; plural=n != 1;\n"
    13 "X-Poedit-Language: Hungarian\n"
    14 "X-Poedit-Country: HUNGARY\n"
    1514"X-Poedit-SourceCharset: utf-8\n"
    16 "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
     15"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
     16"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
    1717"X-Poedit-Basepath: ../\n"
    18 "X-Poedit-Bookmarks: \n"
     18"X-Textdomain-Support: yes\n"
     19"X-Generator: Poedit 1.5.4\n"
    1920"X-Poedit-SearchPath-0: .\n"
    20 "X-Textdomain-Support: yes"
    21 
    22 #: cfs.php:85
    23 #: cfs.php:402
    24 #@ cfs
     21
     22# @ cfs
     23#: cfs.php:84 cfs.php:398 core/actions/init.php:13
    2524msgid "Field Groups"
    2625msgstr "Mezőcsoportok"
    2726
    28 #: cfs.php:86
    29 #@ cfs
     27#
     28#
    3029msgid "Field Group"
    3130msgstr "Mezőcsoport"
    3231
    33 #: cfs.php:87
    34 #@ cfs
     32#
     33#
    3534msgid "Add New"
    3635msgstr "Új hozzáadása"
    3736
    38 #: cfs.php:88
    39 #@ cfs
     37#
     38#
    4039msgid "Add New Field Group"
    4140msgstr "Új mezőcsoport hozzáadása"
    4241
    43 #: cfs.php:89
    44 #@ cfs
     42#
     43#
    4544msgid "Edit Field Group"
    4645msgstr "Mezőcsoport szerkesztése"
    4746
    48 #: cfs.php:90
    49 #@ cfs
     47#
     48#
    5049msgid "New Field Group"
    5150msgstr "Új mezőcsoport"
    5251
    53 #: cfs.php:91
    54 #@ cfs
     52#
     53#
    5554msgid "View Field Group"
    5655msgstr "Mezőcsoport megtekintése"
    5756
    58 #: cfs.php:92
    59 #@ cfs
     57#
     58#
    6059msgid "Search Field Groups"
    6160msgstr "Mezőcsoportok keresése"
    6261
    63 #: cfs.php:93
    64 #@ cfs
     62#
     63#
    6564msgid "No Field Groups found"
    6665msgstr "Nem találhatók mezőcsoportok"
    6766
    68 #: cfs.php:94
    69 #@ cfs
     67#
     68#
    7069msgid "No Field Groups found in Trash"
    7170msgstr "Nincsenek mezőcsoportok a kukában"
    7271
    73 #: cfs.php:122
    74 #@ cfs
     72#
     73#
    7574msgid "Title"
    7675msgstr "Cím"
    7776
    78 #: cfs.php:385
    79 #@ cfs
     77#
     78#
    8079msgid "Fields"
    8180msgstr "Mezők"
    8281
    83 #: cfs.php:386
    84 #@ cfs
     82#
     83#
    8584msgid "Placement Rules"
    8685msgstr "Elhelyezési szabályok"
    8786
    88 #: cfs.php:387
    89 #@ cfs
     87#
     88#
    9089msgid "Extras"
    9190msgstr "Extrák"
    9291
    93 #: cfs.php:403
    94 #@ cfs
     92#
     93#
    9594msgid "Tools"
    9695msgstr "Eszközök"
    9796
    98 #: cfs.php:642
    99 #@ cfs
     97# @ cfs
     98#: core/actions/admin_footer.php:67
     99msgid "Custom Field Suite"
     100msgstr "Custom Field Suite"
     101
     102# @ cfs
     103#: core/actions/admin_footer.php:71
     104msgid "Homepage"
     105msgstr "Főoldal"
     106
     107# @ cfs
     108#: core/actions/admin_footer.php:72
     109msgid "User Guide"
     110msgstr "Használati útmutató"
     111
     112# @ cfs
     113#: core/actions/admin_footer.php:73
     114msgid "Changelog"
     115msgstr "Módosítási napló"
     116
     117# @ cfs
     118#: core/actions/admin_footer.php:78
     119msgid "Donate"
     120msgstr "Támogatás"
     121
     122# @ cfs
     123#: core/actions/admin_footer.php:79
     124msgid "Rate the plugin"
     125msgstr "Bővítmény értékelése"
     126
     127# @ cfs
     128#: core/admin/field_html.php:30
     129msgid "Label"
     130msgstr "Címke"
     131
     132# @ cfs
     133#: core/admin/field_html.php:32
     134msgid "The field label that editors will see."
     135msgstr "A mező névét csak a szerkesztők látják"
     136
     137# @ cfs
     138#: core/admin/field_html.php:39
     139msgid "Name"
     140msgstr "Név"
     141
     142#: core/admin/field_html.php:42
     143msgid ""
     144"The field name is passed into get() to retrieve values. Use only lowercase "
     145"letters, numbers, and underscores."
     146msgstr ""
     147"Ezt a mezőnevet lehet majd a get()-el lekérni. Kis betűket, számokat, és "
     148"aláhúzást tartalmazhat."
     149
     150# @ cfs
     151#: core/admin/field_html.php:49
     152msgid "Field Type"
     153msgstr "Mező típusa"
     154
     155# @ cfs
     156#: core/admin/field_html.php:67
     157msgid "Instructions"
     158msgstr "Utasítás"
     159
     160# @ cfs
     161#: core/admin/field_html.php:69
     162msgid "Notes for editors during data entry"
     163msgstr "Tipp a szerkesztőknek, ha kitöltik a mezőt"
     164
     165# @ default
     166#: core/admin/field_html.php:82
     167msgid "Close"
     168msgstr "Bezár"
     169
     170# @ cfs
     171#: core/admin/field_html.php:83
     172msgid "or"
     173msgstr "vagy"
     174
     175# @ cfs
     176#: core/admin/field_html.php:83
     177msgid "delete"
     178msgstr "törlés"
     179
     180# @ cfs
     181#: core/admin/meta_box_extras.php:39
     182msgid "Content Editor"
     183msgstr "Tartalomszerkesztő"
     184
     185# @ cfs
     186#: core/admin/meta_box_extras.php:48
     187msgid "Hide the content editor"
     188msgstr "Tartalomszerkesztő elrejtése"
     189
     190# @ cfs
     191#: core/admin/meta_box_extras.php:55
     192msgid "Gravity Forms Integration"
     193msgstr "Gravity Froms integráció"
     194
     195#: core/admin/meta_box_extras.php:75
     196msgid "Your Gravity Form and CFS field labels must match exactly"
     197msgstr "A Gravity Form és a CFS mezők címkéje meg kell egyezzen"
     198
     199#: core/admin/meta_box_extras.php:79
     200msgid "Please install"
     201msgstr "Kérem telepítse"
     202
     203#: core/admin/meta_box_extras.php:79
     204msgid "to use this feature"
     205msgstr "hogy használni tudja ezt a funkciót"
     206
     207# @ cfs
     208#: core/admin/meta_box_fields.php:60
     209msgid "Add New Field"
     210msgstr "Új mező hozzáadása"
     211
     212# @ cfs
     213#: core/admin/meta_box_rules.php:5
     214msgid "equals"
     215msgstr "egyenlő"
     216
     217# @ cfs
     218#: core/admin/meta_box_rules.php:6
     219msgid "is not"
     220msgstr "nem"
     221
     222# @ cfs
     223#: core/admin/meta_box_rules.php:82 core/admin/meta_box_rules.php:87
     224msgid "Leave blank to skip this rule"
     225msgstr "A szabály mellőzéséhez hagyja üresen"
     226
     227# @ cfs
     228#: core/admin/meta_box_rules.php:120 core/fields/relationship.php:89
     229msgid "Post Types"
     230msgstr "Bejegyzéstípusok"
     231
     232# @ cfs
     233#: core/admin/meta_box_rules.php:151
     234msgid "User Roles"
     235msgstr "Felhasználói szintek"
     236
     237# @ cfs
     238#: core/admin/meta_box_rules.php:182
     239msgid "Posts"
     240msgstr "Bejegyzések"
     241
     242# @ cfs
     243#: core/admin/meta_box_rules.php:205
     244msgid "Taxonomy Terms"
     245msgstr "Taxonómiai feltételek"
     246
     247# @ cfs
     248#: core/admin/meta_box_rules.php:236
     249msgid "Page Template"
     250msgstr "Oldalsablon"
     251
     252#: core/admin/page_tools.php:64 core/admin/page_tools.php:86
     253msgid "Export"
     254msgstr "Exportálás"
     255
     256# @ cfs
     257#: core/admin/page_tools.php:65 core/admin/page_tools.php:111
     258msgid "Import"
     259msgstr "Importálás"
     260
     261#: core/admin/page_tools.php:66
     262msgid "Debug"
     263msgstr "Hibakeresés"
     264
     265#: core/admin/page_tools.php:74
     266msgid "Which field groups would you like to export?"
     267msgstr "Melyik mezőcsoportokat szeretné exportálni?"
     268
     269#: core/admin/page_tools.php:103
     270msgid "Paste the import code below. Existing field groups will be skipped."
     271msgstr ""
     272"Illessze be az alábbi importáló kódot. A meglévő mezőcsoportok kihagyásra "
     273"kerülnek."
     274
     275# @ cfs
     276#: core/admin/page_tools.php:124
     277msgid "Your site uses the following software:"
     278msgstr "Az ön oldala a következő szoftvereket használja:"
     279
     280# @ cfs
     281#: core/classes/ajax.php:174
    100282msgid "Imported"
    101283msgstr "Importált"
    102284
    103 #: cfs.php:646
    104 #@ cfs
     285#
     286#
    105287msgid "Skipped"
    106288msgstr "Mellőzött"
    107289
    108 #: cfs.php:651
    109 #@ cfs
     290#
     291#
    110292msgid "Nothing to import"
    111293msgstr "Nem importált"
    112294
    113 #: cfs.php:726
    114 #@ cfs
     295#
     296#
    115297msgid "No field groups selected"
    116298msgstr "Nincsenek mezőcsoportok kijelölve"
    117299
    118 #: core/actions/admin_footer.php:67
    119 #@ cfs
    120 msgid "Custom Field Suite"
    121 msgstr "Custom Field Suite"
    122 
    123 #: core/actions/admin_footer.php:71
    124 #@ cfs
    125 msgid "Homepage"
    126 msgstr "Főoldal"
    127 
    128 #: core/actions/admin_footer.php:72
    129 #@ cfs
    130 msgid "User Guide"
    131 msgstr "Használati útmutató"
    132 
    133 #: core/actions/admin_footer.php:73
    134 #@ cfs
    135 msgid "Changelog"
    136 msgstr "Módosítási napló"
    137 
    138 #: core/actions/admin_footer.php:78
    139 #@ cfs
    140 msgid "Donate"
    141 msgstr "Támogatás"
    142 
    143 #: core/actions/admin_footer.php:79
    144 #@ cfs
    145 msgid "Rate the plugin"
    146 msgstr "Bővítmény értékelése"
    147 
    148 #: core/admin/field_html.php:30
    149 #@ cfs
    150 msgid "Label"
    151 msgstr "Címke"
    152 
    153 #: core/admin/field_html.php:31
    154 #@ cfs
    155 msgid "The field name that editors will see"
    156 msgstr "A mező névét csak a szerkesztők látják"
    157 
    158 #: core/admin/field_html.php:37
    159 #@ cfs
    160 msgid "Name"
    161 msgstr "Név"
    162 
    163 #: core/admin/field_html.php:38
    164 #@ cfs
    165 msgid "Only lowercase letters and underscores"
    166 msgstr "Csak kisbetűk és aláhúzás"
    167 
    168 #: core/admin/field_html.php:43
    169 #@ cfs
    170 msgid "Field Type"
    171 msgstr "Mező típusa"
    172 
    173 #: core/admin/field_html.php:61
    174 #@ cfs
    175 msgid "Instructions"
    176 msgstr "Utasítás"
    177 
    178 #: core/admin/field_html.php:62
    179 #@ cfs
    180 msgid "Tips for editors when entering field data"
    181 msgstr "Tipp a szerkesztőknek, ha kitöltik a mezőt"
    182 
    183 #: core/admin/field_html.php:74
    184 #@ default
    185 msgid "Close"
    186 msgstr ""
    187 
    188 #: core/admin/field_html.php:75
    189 #@ cfs
    190 msgid "or"
    191 msgstr "vagy"
    192 
    193 #: core/admin/field_html.php:75
    194 #@ cfs
    195 msgid "delete"
    196 msgstr "törlés"
    197 
    198 #: core/admin/meta_box_extras.php:39
    199 #@ cfs
    200 msgid "Content Editor"
    201 msgstr "Tartalomszerkesztő"
    202 
    203 #: core/admin/meta_box_extras.php:48
    204 #@ cfs
    205 msgid "Hide the content editor"
    206 msgstr "Tartalomszerkesztő elrejtése"
    207 
    208 #: core/admin/meta_box_extras.php:55
    209 #@ cfs
    210 msgid "Gravity Forms Integration"
    211 msgstr "Gravity Froms integráció"
    212 
    213 #: core/admin/meta_box_fields.php:60
    214 #@ cfs
    215 msgid "Add New Field"
    216 msgstr "Új mező hozzáadása"
    217 
    218 #: core/admin/meta_box_rules.php:5
    219 #@ cfs
    220 msgid "equals"
    221 msgstr "egyenlő"
    222 
    223 #: core/admin/meta_box_rules.php:6
    224 #@ cfs
    225 msgid "is not"
    226 msgstr "nem"
    227 
    228 #: core/admin/meta_box_rules.php:78
    229 #@ cfs
    230 msgid "Leave blank to skip this rule"
    231 msgstr "A szabály mellőzéséhez hagyja üresen"
    232 
    233 #: core/admin/meta_box_rules.php:87
    234 #: core/fields/relationship.php:89
    235 #@ cfs
    236 msgid "Post Types"
    237 msgstr "Bejegyzéstípusok"
    238 
    239 #: core/admin/meta_box_rules.php:118
    240 #@ cfs
    241 msgid "User Roles"
    242 msgstr "Felhasználói szintek"
    243 
    244 #: core/admin/meta_box_rules.php:149
    245 #@ cfs
    246 msgid "Posts"
    247 msgstr "Bejegyzések"
    248 
    249 #: core/admin/meta_box_rules.php:180
    250 #@ cfs
    251 msgid "Taxonomy Terms"
    252 msgstr "Taxonómiai feltételek"
    253 
    254 #: core/admin/meta_box_rules.php:211
    255 #@ cfs
    256 msgid "Page Template"
    257 msgstr "Oldalsablon"
    258 
    259 #: core/fields/color/color.php:9
    260 #@ cfs
     300# @ cfs
     301#: core/classes/field.php:21 core/fields/field.php:21 core/fields/text.php:9
     302msgid "Text"
     303msgstr "Szöveg"
     304
     305#: core/classes/field.php:57 core/fields/file.php:77
     306#: core/fields/relationship.php:106 core/fields/select.php:125
     307#: core/fields/text.php:33 core/fields/textarea.php:61
     308#: core/fields/true_false.php:44
     309msgid "Validation"
     310msgstr "Érvényesítés"
     311
     312# @ cfs
     313#: core/classes/field.php:66 core/fields/file.php:86
     314#: core/fields/relationship.php:115 core/fields/select.php:134
     315#: core/fields/text.php:42 core/fields/textarea.php:70
     316#: core/fields/true_false.php:53
     317msgid "This is a required field"
     318msgstr "Ez egy kötelező mező"
     319
     320# @ cfs
     321#: core/fields/file.php:9
     322msgid "File Upload"
     323msgstr "Fájlfeltöltés"
     324
     325# @ cfs
     326#: core/fields/file.php:45
     327msgid "Add File"
     328msgstr "Fájl hozzáadása"
     329
     330# @ cfs
     331#: core/fields/file.php:46
     332msgid "Remove"
     333msgstr "Eltávolítás"
     334
     335# @ cfs
     336#: core/fields/file.php:56
     337msgid "Return Value"
     338msgstr "Visszatérési érték"
     339
     340# @ cfs
     341#: core/fields/file.php:65
     342msgid "File URL"
     343msgstr "Fájl URL"
     344
     345# @ cfs
     346#: core/fields/file.php:66
     347msgid "Attachment ID"
     348msgstr "Csatolmány ID"
     349
     350# @ cfs
     351#: core/fields/file.php:117
     352msgid "Use This File"
     353msgstr "Fájl használata"
     354
     355# @ cfs
     356#: core/fields/file.php:170
     357msgid "Attach file"
     358msgstr "Fájl csatolása"
     359
     360# @ cfs
     361#: core/fields/loop.php:9
     362msgid "Loop"
     363msgstr "Hurok"
     364
     365# @ cfs
     366#: core/fields/loop.php:36
     367msgid "Row Display"
     368msgstr "Sor megjelenítés"
     369
     370# @ cfs
     371#: core/fields/loop.php:45
     372msgid "Show the values by default"
     373msgstr "Mutassa az értékeket alapértelmezetten"
     374
     375# @ cfs
     376#: core/fields/loop.php:52
     377msgid "Row Label"
     378msgstr "Sor címkéje"
     379
     380# @ cfs
     381#: core/fields/loop.php:60 core/fields/loop.php:91 core/fields/loop.php:162
     382msgid "Loop Row"
     383msgstr "Hurok sor"
     384
     385# @ cfs
     386#: core/fields/loop.php:67
     387msgid "Button Label"
     388msgstr "Gomb címkéje"
     389
     390# @ cfs
     391#: core/fields/loop.php:75 core/fields/loop.php:117 core/fields/loop.php:163
     392msgid "Add Row"
     393msgstr "Sor hozzáadása"
     394
     395# @ cfs
     396#: core/fields/relationship.php:9
     397msgid "Relationship"
     398msgstr "Viszony"
     399
     400# @ cfs
     401#: core/fields/relationship.php:90
     402msgid "Limit posts to the following types"
     403msgstr "Bejegyzések szűkítése a következő típusokra"
     404
     405# @ cfs
     406#: core/fields/select.php:9
     407msgid "Select"
     408msgstr "Kiválasztás"
     409
     410# @ cfs
     411#: core/fields/select.php:93
     412msgid "Choices"
     413msgstr "Lehetőségek"
     414
     415# @ cfs
     416#: core/fields/select.php:94
     417msgid "Enter one choice per line"
     418msgstr "Írjon egy lehetőséget soronként"
     419
     420#: core/fields/select.php:109
     421msgid "Multi-select?"
     422msgstr "Több kiválasztható?"
     423
     424# @ cfs
     425#: core/fields/select.php:118
     426msgid "This is a multi-select field"
     427msgstr "Ez egy több kiválasztós mező"
     428
     429# @ cfs
     430#: core/fields/text.php:18 core/fields/textarea.php:25
     431msgid "Default Value"
     432msgstr "Alapértelmezett érték"
     433
     434# @ cfs
     435#: core/fields/textarea.php:9
     436msgid "Textarea"
     437msgstr "Szövegterület"
     438
     439# @ cfs
     440#: core/fields/textarea.php:40 core/fields/wysiwyg.php:34
     441msgid "Formatting"
     442msgstr "Formázás"
     443
     444# @ cfs
     445#: core/fields/textarea.php:49
     446msgid "None"
     447msgstr "Nem"
     448
     449# @ cfs
     450#: core/fields/textarea.php:50
     451msgid "Convert newlines to <br />"
     452msgstr "Új sorok konvertálása <br />-re"
     453
     454# @ cfs
     455#: core/fields/true_false.php:9
     456msgid "True / False"
     457msgstr "Igaz / Hamis"
     458
     459# @ cfs
     460#: core/fields/true_false.php:28
     461msgid "Message"
     462msgstr "Üzenet"
     463
     464# @ cfs
     465#: core/fields/true_false.php:29
     466msgid "The text beside the checkbox"
     467msgstr "A szöveg melletti jelölőn��gyzet"
     468
     469# @ cfs
     470#: core/fields/user.php:9
     471msgid "User"
     472msgstr "Felhasználó"
     473
     474# @ cfs
     475#: core/fields/wysiwyg.php:9
     476msgid "Wysiwyg Editor"
     477msgstr "Wysiwyg szerkesztő"
     478
     479# @ cfs
     480#: core/fields/wysiwyg.php:43
     481msgid "Default"
     482msgstr "Alapértelmezett"
     483
     484# @ cfs
     485#: core/fields/wysiwyg.php:44
     486msgid "None (bypass filters)"
     487msgstr "Nincs (szűrő mellőzése)"
     488
     489# @ cfs
     490#: core/fields/color/color.php:17
    261491msgid "Color"
    262492msgstr "Szín"
    263493
     494
    264495#: core/fields/date/date.php:9
    265 #@ cfs
    266496msgid "Date"
    267497msgstr "Dátum"
    268 
    269 #: core/fields/field.php:21
    270 #: core/fields/text.php:9
    271 #@ cfs
    272 msgid "Text"
    273 msgstr "Szöveg"
    274 
    275 #: core/fields/file.php:9
    276 #@ cfs
    277 msgid "File Upload"
    278 msgstr "Fájlfeltöltés"
    279 
    280 #: core/fields/file.php:45
    281 #@ cfs
    282 msgid "Add File"
    283 msgstr "Fájl hozzáadása"
    284 
    285 #: core/fields/file.php:46
    286 #@ cfs
    287 msgid "Remove"
    288 msgstr "Eltávolítás"
    289 
    290 #: core/fields/file.php:56
    291 #@ cfs
    292 msgid "Return Value"
    293 msgstr "Visszatérési érték"
    294 
    295 #: core/fields/file.php:65
    296 #@ cfs
    297 msgid "File URL"
    298 msgstr "Fájl URL"
    299 
    300 #: core/fields/file.php:66
    301 #@ cfs
    302 msgid "Attachment ID"
    303 msgstr "Csatolmány ID"
    304 
    305 #: core/fields/file.php:101
    306 #@ cfs
    307 msgid "Use This File"
    308 msgstr "Fájl használata"
    309 
    310 #: core/fields/file.php:154
    311 #@ cfs
    312 msgid "Attach file"
    313 msgstr "Fájl csatolása"
    314 
    315 #: core/fields/loop.php:9
    316 #@ cfs
    317 msgid "Loop"
    318 msgstr "Hurok"
    319 
    320 #: core/fields/loop.php:36
    321 #@ cfs
    322 msgid "Row Display"
    323 msgstr "Sor megjelenítés"
    324 
    325 #: core/fields/loop.php:45
    326 #@ cfs
    327 msgid "Show the values by default"
    328 msgstr "Mutassa az értékeket alapértelmezetten"
    329 
    330 #: core/fields/loop.php:52
    331 #@ cfs
    332 msgid "Row Label"
    333 msgstr "Sor címkéje"
    334 
    335 #: core/fields/loop.php:60
    336 #: core/fields/loop.php:91
    337 #: core/fields/loop.php:162
    338 #@ cfs
    339 msgid "Loop Row"
    340 msgstr "Hurok sor"
    341 
    342 #: core/fields/loop.php:67
    343 #@ cfs
    344 msgid "Button Label"
    345 msgstr "Gomb címkéje"
    346 
    347 #: core/fields/loop.php:75
    348 #: core/fields/loop.php:117
    349 #: core/fields/loop.php:163
    350 #@ cfs
    351 msgid "Add Row"
    352 msgstr "Sor hozzáadása"
    353 
    354 #: core/fields/relationship.php:9
    355 #@ cfs
    356 msgid "Relationship"
    357 msgstr "Viszony"
    358 
    359 #: core/fields/relationship.php:90
    360 #@ cfs
    361 msgid "Limit posts to the following types"
    362 msgstr "Bejegyzések szűkítése a következő típusokra"
    363 
    364 #: core/fields/select.php:9
    365 #@ cfs
    366 msgid "Select"
    367 msgstr "Kiválaszt"
    368 
    369 #: core/fields/select.php:93
    370 #@ cfs
    371 msgid "Choices"
    372 msgstr "Lehetőségek"
    373 
    374 #: core/fields/select.php:94
    375 #@ cfs
    376 msgid "Enter one choice per line"
    377 msgstr "Írjon egy lehetőséget soronként"
    378 
    379 #: core/fields/select.php:109
    380 #@ cfs
    381 msgid "Select multiple values?"
    382 msgstr "Több lehetőség kiválasztása?"
    383 
    384 #: core/fields/select.php:118
    385 #@ cfs
    386 msgid "This a multi-select field"
    387 msgstr "Ez egy multi-kiválasztó mező"
    388 
    389 #: core/fields/text.php:18
    390 #: core/fields/textarea.php:25
    391 #@ cfs
    392 msgid "Default Value"
    393 msgstr "Alapértelmezett érték"
    394 
    395 #: core/fields/textarea.php:9
    396 #@ cfs
    397 msgid "Textarea"
    398 msgstr "Szövegterület"
    399 
    400 #: core/fields/textarea.php:40
    401 #: core/fields/wysiwyg.php:34
    402 #@ cfs
    403 msgid "Formatting"
    404 msgstr "Formázás"
    405 
    406 #: core/fields/textarea.php:49
    407 #@ cfs
    408 msgid "None"
    409 msgstr "Nem"
    410 
    411 #: core/fields/textarea.php:50
    412 #@ cfs
    413 msgid "Convert newlines to <br />"
    414 msgstr "Új sorok konvertálása <br />-re"
    415 
    416 #: core/fields/true_false.php:9
    417 #@ cfs
    418 msgid "True / False"
    419 msgstr "Igaz / Hamis"
    420 
    421 #: core/fields/true_false.php:28
    422 #@ cfs
    423 msgid "Message"
    424 msgstr "Üzenet"
    425 
    426 #: core/fields/true_false.php:29
    427 #@ cfs
    428 msgid "The text beside the checkbox"
    429 msgstr "A szöveg melletti jelölőnégyzet"
    430 
    431 #: core/fields/user.php:9
    432 #@ cfs
    433 msgid "User"
    434 msgstr "Felhasználó"
    435 
    436 #: core/fields/wysiwyg.php:9
    437 #@ cfs
    438 msgid "Wysiwyg Editor"
    439 msgstr "Wysiwyg szerkesztő"
    440 
    441 #: core/fields/wysiwyg.php:43
    442 #@ cfs
    443 msgid "Default"
    444 msgstr "Alapértelmezett"
    445 
    446 #: core/fields/wysiwyg.php:44
    447 #@ cfs
    448 msgid "None (bypass filters)"
    449 msgstr "Nincs (szűrő mellőzése)"
    450 
  • custom-field-suite/trunk/readme.txt

    r624237 r631971  
    5050== Changelog ==
    5151
     52
     53
     54
     55
     56
    5257= 1.7.7 =
    5358* Compatibility fix for WooFramework
     
    7378* Added tooltips to field management page
    7479
    75 = 1.7.3 =
    76 * Added field validation
    77 * Bugfix: get_post_type caching causing Gravity Form save error (props producerism)
    78 * Added Hungarian translation (props József Szijártó)
    79 
    80 = 1.7.2 =
    81 * Added Media button to WYSIWYG fields
    82 * Bugfix: [fatal error when a post update causes a rules mismatch](https://github.com/logikal16/custom-field-suite/issues/55) (props Gator92)
    83 * Tools page UI improvements
    84 
    85 = 1.7.1 =
    86 * Placement rules clarification text
    87 * Allow editing of fields without labels
    88 * Added new "Row Label" Loop option
    89 * Bugfix: nested loop fields (props Hylkep)
    90 * Updated timepicker JS
    91 
    92 = 1.7.0 =
    93 * Improved: field management UI
    94 * Improved: select field returns associative array (value, label)
    95 * Improved: rename postmeta keys when fields are renamed
    96 * Improved: delete values when a field is deleted
    97 * Bugfix: clear cache on $cfs->save (props dataworx)
    98 * File field compatibility fixes for WP 3.5
    99 * Added new logo (https://github.com/somerandomdude/Iconic)
    100 
    10180[See the full changelog](https://uproot.us/custom-field-suite/changelog/)
Note: See TracChangeset for help on using the changeset viewer.