Skip to content

Commit

Permalink
Merge pull request #1142 from therobiulislam12/ri-wordpress
Browse files Browse the repository at this point in the history
WordPrss Translation
  • Loading branch information
zonayedpca authored Oct 28, 2024
2 parents d16f489 + 6725f4e commit b631c08
Showing 1 changed file with 44 additions and 22 deletions.
66 changes: 44 additions & 22 deletions data/wordpress-plugin-development.json
Original file line number Diff line number Diff line change
Expand Up @@ -303,13 +303,16 @@
{
"title": "প্লাগইন সিকিউরিটি (ইউসার রোলেস)",
"items": [{
"code": "add_role()"
"code": "add_role()",
"definition": "ইউসার রোল যোগ করুন"
},
{
"code": "remove_role()"
"code": "remove_role()",
"definition": "ইউসার রোল বাদ দিন"
},
{
"code": "get_role()"
"code": "get_role()",
"definition": ""
},
{
"code": "add_cap()"
Expand All @@ -321,7 +324,8 @@
"code": "user_can()"
},
{
"code": "current_user_can()"
"code": "current_user_can()",
"definition": "বর্তমান ইউসার করতে পারে"
}
]
},
Expand Down Expand Up @@ -464,10 +468,12 @@
{
"title": "অ্যাডমিনিস্ট্রেশন মেনু",
"items": [{
"code": "add_menu_page()"
"code": "add_menu_page()",
"definition": "এডমিন ড্যাশবোর্ডে মেনু যুক্ত করুন"
},
{
"code": "add_submenu_page()"
"code": "add_submenu_page()",
"definition": "এডমিন ড্যাশবোর্ডে সাবমেনু যুক্ত করুন"
},
{
"code": "add_dashboard_page() – index.php"
Expand Down Expand Up @@ -534,20 +540,24 @@
"code": "[embed]"
},
{
"code": "add_shortcode()"
"code": "add_shortcode()",
"definition": "শর্টকোড যুক্ত করুন"
},
{
"code": "remove_shortcode()"
"code": "remove_shortcode()",
"definition": "শর্টকোড মুছে ফেলুন"
},
{
"code": "shortcode_exists()"
"code": "shortcode_exists()",
"definition": "শর্টকোড আছে কি নাহ সেটা দেখুন"
}
]
},
{
"title": "সেটিংস",
"items": [{
"code": "register_setting()"
"code": "register_setting()",
"definition": "রেজিস্টার সেটিং"
},
{
"code": "unregister_setting()"
Expand All @@ -571,22 +581,28 @@
"code": "add_settings_error()"
},
{
"code": "get_settings_errors()"
"code": "get_settings_errors()",
"definition": "সেটিং এর এরর চেক দেখতে"
},
{
"code": "settings_errors()"
"code": "settings_errors()",
"definition": "সেটিং এর এরর চেক করতে"
},
{
"code": "add_option()"
"code": "add_option()",
"definition": "wp_options টেবিলে কিছু সংযুক্ত করা"
},
{
"code": "get_option()"
"code": "get_option()",
"definition": "wp_options টেবিল থেকে কিছু দেখার জন্য ব্যবহার হয়"
},
{
"code": "update_option()"
"code": "update_option()",
"definition": "wp_options টেবিলে কোনো ভ্যালু আপডেট করতে ব্যবহার হয়"
},
{
"code": "delete_option()"
"code": "delete_option()",
"definition": "wp_options টেবিলে কোনো ভ্যালু ডিলিট করতে ব্যবহার হয়"
},
{
"code": "add_site_option()"
Expand Down Expand Up @@ -621,16 +637,20 @@
{
"title": "কাস্টম পোস্ট টাইপ & ট্যাক্সোনমি",
"items": [{
"code": "register_post_type( string $post_type, array|string $args = array() )"
"code": "register_post_type( string $post_type, array|string $args = array() )",
"definition": "নতুন পোস্টটাইপ তৈরির জন্য ব্যবহার করা হয়"
},
{
"code": "single-{post_type}.php"
"code": "single-{post_type}.php",
"definition": "একক কোনো পোস্টটাইপ এর সিঙ্গেল পেইজ করার জন্য"
},
{
"code": "archive-{post_type}.php"
"code": "archive-{post_type}.php",
"definition": "একক কোনো পোস্টটাইপ এর আর্কাইভ পেইজ করার জন্য"
},
{
"code": "register_taxonomy( string $taxonomy, array|string $object_type, array|string $args = array() )"
"code": "register_taxonomy( string $taxonomy, array|string $object_type, array|string $args = array() )",
"definition": "একক কোনো পোস্টটাইপে ক্যাটেগরি এড করার জন্য ব্যবহার করা হয়"
}
]
},
Expand Down Expand Up @@ -698,10 +718,12 @@
"code": "esc_attr_x()"
},
{
"code": "number_format_i18n()"
"code": "number_format_i18n()",
"definition": "আন্তর্জাতিক নাম্বার ফরমেট"
},
{
"code": "date_i18n()"
"code": "date_i18n()",
"definition": "তারিখকে আন্তর্জাতিক করার জন্য"
}
]
},
Expand Down

0 comments on commit b631c08

Please sign in to comment.