Skip to content

Commit 6725f4e

Browse files
Done some translation for wordpress
1 parent 8f946d7 commit 6725f4e

1 file changed

Lines changed: 36 additions & 18 deletions

File tree

data/wordpress-plugin-development.json

Lines changed: 36 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -468,10 +468,12 @@
468468
{
469469
"title": "অ্যাডমিনিস্ট্রেশন মেনু",
470470
"items": [{
471-
"code": "add_menu_page()"
471+
"code": "add_menu_page()",
472+
"definition": "এডমিন ড্যাশবোর্ডে মেনু যুক্ত করুন"
472473
},
473474
{
474-
"code": "add_submenu_page()"
475+
"code": "add_submenu_page()",
476+
"definition": "এডমিন ড্যাশবোর্ডে সাবমেনু যুক্ত করুন"
475477
},
476478
{
477479
"code": "add_dashboard_page() – index.php"
@@ -538,20 +540,24 @@
538540
"code": "[embed]"
539541
},
540542
{
541-
"code": "add_shortcode()"
543+
"code": "add_shortcode()",
544+
"definition": "শর্টকোড যুক্ত করুন"
542545
},
543546
{
544-
"code": "remove_shortcode()"
547+
"code": "remove_shortcode()",
548+
"definition": "শর্টকোড মুছে ফেলুন"
545549
},
546550
{
547-
"code": "shortcode_exists()"
551+
"code": "shortcode_exists()",
552+
"definition": "শর্টকোড আছে কি নাহ সেটা দেখুন"
548553
}
549554
]
550555
},
551556
{
552557
"title": "সেটিংস",
553558
"items": [{
554-
"code": "register_setting()"
559+
"code": "register_setting()",
560+
"definition": "রেজিস্টার সেটিং"
555561
},
556562
{
557563
"code": "unregister_setting()"
@@ -575,22 +581,28 @@
575581
"code": "add_settings_error()"
576582
},
577583
{
578-
"code": "get_settings_errors()"
584+
"code": "get_settings_errors()",
585+
"definition": "সেটিং এর এরর চেক দেখতে"
579586
},
580587
{
581-
"code": "settings_errors()"
588+
"code": "settings_errors()",
589+
"definition": "সেটিং এর এরর চেক করতে"
582590
},
583591
{
584-
"code": "add_option()"
592+
"code": "add_option()",
593+
"definition": "wp_options টেবিলে কিছু সংযুক্ত করা"
585594
},
586595
{
587-
"code": "get_option()"
596+
"code": "get_option()",
597+
"definition": "wp_options টেবিল থেকে কিছু দেখার জন্য ব্যবহার হয়"
588598
},
589599
{
590-
"code": "update_option()"
600+
"code": "update_option()",
601+
"definition": "wp_options টেবিলে কোনো ভ্যালু আপডেট করতে ব্যবহার হয়"
591602
},
592603
{
593-
"code": "delete_option()"
604+
"code": "delete_option()",
605+
"definition": "wp_options টেবিলে কোনো ভ্যালু ডিলিট করতে ব্যবহার হয়"
594606
},
595607
{
596608
"code": "add_site_option()"
@@ -625,16 +637,20 @@
625637
{
626638
"title": "কাস্টম পোস্ট টাইপ & ট্যাক্সোনমি",
627639
"items": [{
628-
"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": "নতুন পোস্টটাইপ তৈরির জন্য ব্যবহার করা হয়"
629642
},
630643
{
631-
"code": "single-{post_type}.php"
644+
"code": "single-{post_type}.php",
645+
"definition": "একক কোনো পোস্টটাইপ এর সিঙ্গেল পেইজ করার জন্য"
632646
},
633647
{
634-
"code": "archive-{post_type}.php"
648+
"code": "archive-{post_type}.php",
649+
"definition": "একক কোনো পোস্টটাইপ এর আর্কাইভ পেইজ করার জন্য"
635650
},
636651
{
637-
"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": "একক কোনো পোস্টটাইপে ক্যাটেগরি এড করার জন্য ব্যবহার করা হয়"
638654
}
639655
]
640656
},
@@ -702,10 +718,12 @@
702718
"code": "esc_attr_x()"
703719
},
704720
{
705-
"code": "number_format_i18n()"
721+
"code": "number_format_i18n()",
722+
"definition": "আন্তর্জাতিক নাম্বার ফরমেট"
706723
},
707724
{
708-
"code": "date_i18n()"
725+
"code": "date_i18n()",
726+
"definition": "তারিখকে আন্তর্জাতিক করার জন্য"
709727
}
710728
]
711729
},

0 commit comments

Comments
 (0)