Skip to content

Commit b631c08

Browse files
authored
Merge pull request #1142 from therobiulislam12/ri-wordpress
WordPrss Translation
2 parents d16f489 + 6725f4e commit b631c08

1 file changed

Lines changed: 44 additions & 22 deletions

File tree

data/wordpress-plugin-development.json

Lines changed: 44 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -303,13 +303,16 @@
303303
{
304304
"title": "প্লাগইন সিকিউরিটি (ইউসার রোলেস)",
305305
"items": [{
306-
"code": "add_role()"
306+
"code": "add_role()",
307+
"definition": "ইউসার রোল যোগ করুন"
307308
},
308309
{
309-
"code": "remove_role()"
310+
"code": "remove_role()",
311+
"definition": "ইউসার রোল বাদ দিন"
310312
},
311313
{
312-
"code": "get_role()"
314+
"code": "get_role()",
315+
"definition": ""
313316
},
314317
{
315318
"code": "add_cap()"
@@ -321,7 +324,8 @@
321324
"code": "user_can()"
322325
},
323326
{
324-
"code": "current_user_can()"
327+
"code": "current_user_can()",
328+
"definition": "বর্তমান ইউসার করতে পারে"
325329
}
326330
]
327331
},
@@ -464,10 +468,12 @@
464468
{
465469
"title": "অ্যাডমিনিস্ট্রেশন মেনু",
466470
"items": [{
467-
"code": "add_menu_page()"
471+
"code": "add_menu_page()",
472+
"definition": "এডমিন ড্যাশবোর্ডে মেনু যুক্ত করুন"
468473
},
469474
{
470-
"code": "add_submenu_page()"
475+
"code": "add_submenu_page()",
476+
"definition": "এডমিন ড্যাশবোর্ডে সাবমেনু যুক্ত করুন"
471477
},
472478
{
473479
"code": "add_dashboard_page() – index.php"
@@ -534,20 +540,24 @@
534540
"code": "[embed]"
535541
},
536542
{
537-
"code": "add_shortcode()"
543+
"code": "add_shortcode()",
544+
"definition": "শর্টকোড যুক্ত করুন"
538545
},
539546
{
540-
"code": "remove_shortcode()"
547+
"code": "remove_shortcode()",
548+
"definition": "শর্টকোড মুছে ফেলুন"
541549
},
542550
{
543-
"code": "shortcode_exists()"
551+
"code": "shortcode_exists()",
552+
"definition": "শর্টকোড আছে কি নাহ সেটা দেখুন"
544553
}
545554
]
546555
},
547556
{
548557
"title": "সেটিংস",
549558
"items": [{
550-
"code": "register_setting()"
559+
"code": "register_setting()",
560+
"definition": "রেজিস্টার সেটিং"
551561
},
552562
{
553563
"code": "unregister_setting()"
@@ -571,22 +581,28 @@
571581
"code": "add_settings_error()"
572582
},
573583
{
574-
"code": "get_settings_errors()"
584+
"code": "get_settings_errors()",
585+
"definition": "সেটিং এর এরর চেক দেখতে"
575586
},
576587
{
577-
"code": "settings_errors()"
588+
"code": "settings_errors()",
589+
"definition": "সেটিং এর এরর চেক করতে"
578590
},
579591
{
580-
"code": "add_option()"
592+
"code": "add_option()",
593+
"definition": "wp_options টেবিলে কিছু সংযুক্ত করা"
581594
},
582595
{
583-
"code": "get_option()"
596+
"code": "get_option()",
597+
"definition": "wp_options টেবিল থেকে কিছু দেখার জন্য ব্যবহার হয়"
584598
},
585599
{
586-
"code": "update_option()"
600+
"code": "update_option()",
601+
"definition": "wp_options টেবিলে কোনো ভ্যালু আপডেট করতে ব্যবহার হয়"
587602
},
588603
{
589-
"code": "delete_option()"
604+
"code": "delete_option()",
605+
"definition": "wp_options টেবিলে কোনো ভ্যালু ডিলিট করতে ব্যবহার হয়"
590606
},
591607
{
592608
"code": "add_site_option()"
@@ -621,16 +637,20 @@
621637
{
622638
"title": "কাস্টম পোস্ট টাইপ & ট্যাক্সোনমি",
623639
"items": [{
624-
"code": "register_post_type( string $post_type, array|string $args = array() )"
640+
"code": "register_post_type( string $post_type, array|string $args = array() )",
641+
"definition": "নতুন পোস্টটাইপ তৈরির জন্য ব্যবহার করা হয়"
625642
},
626643
{
627-
"code": "single-{post_type}.php"
644+
"code": "single-{post_type}.php",
645+
"definition": "একক কোনো পোস্টটাইপ এর সিঙ্গেল পেইজ করার জন্য"
628646
},
629647
{
630-
"code": "archive-{post_type}.php"
648+
"code": "archive-{post_type}.php",
649+
"definition": "একক কোনো পোস্টটাইপ এর আর্কাইভ পেইজ করার জন্য"
631650
},
632651
{
633-
"code": "register_taxonomy( string $taxonomy, array|string $object_type, array|string $args = array() )"
652+
"code": "register_taxonomy( string $taxonomy, array|string $object_type, array|string $args = array() )",
653+
"definition": "একক কোনো পোস্টটাইপে ক্যাটেগরি এড করার জন্য ব্যবহার করা হয়"
634654
}
635655
]
636656
},
@@ -698,10 +718,12 @@
698718
"code": "esc_attr_x()"
699719
},
700720
{
701-
"code": "number_format_i18n()"
721+
"code": "number_format_i18n()",
722+
"definition": "আন্তর্জাতিক নাম্বার ফরমেট"
702723
},
703724
{
704-
"code": "date_i18n()"
725+
"code": "date_i18n()",
726+
"definition": "তারিখকে আন্তর্জাতিক করার জন্য"
705727
}
706728
]
707729
},

0 commit comments

Comments
 (0)