-
Notifications
You must be signed in to change notification settings - Fork 406
[i18n] Add Bengali translation for blueprints tutorial pages #3461
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
perashanid
wants to merge
27
commits into
WordPress:trunk
Choose a base branch
from
perashanid:Bengali-translation
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
907130f
[i18n] Add Bengali translation for guides/providing-content-for-your-…
perashanid e2412dc
Add Bengali translation for blueprints tutorial
perashanid 1a78745
Add Bengali translation for blueprints tutorial pages
perashanid 6b7508f
Potential fix for pull request finding
perashanid d812f98
Fix admonition syntax in Bengali translations
perashanid ace7020
Merge remote changes
perashanid 401dd74
Quote Bengali text in YAML front matter
perashanid 62e4025
Potential fix for pull request finding
perashanid 0cea858
Merge branch 'trunk' into Bengali-translation
fellyph af7841f
Merge branch 'trunk' into Bengali-translation
fellyph 2e41bba
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid c4d7663
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 0021292
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid c5e6c3e
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 11e4cde
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 4e10c98
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 759bda2
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 765ca2b
Merge branch 'trunk' into Bengali-translation
fellyph 5b94564
[i18n] Add Bengali translation for blueprints tutorial pages
perashanid 16b2c1f
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 281d435
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 0f817df
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 7be0ed9
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid b60c15b
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid fc45abf
Merge branch 'trunk' into Bengali-translation
perashanid 3acc181
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid 09a2fda
Update packages/docs/site/i18n/bn/docusaurus-plugin-content-docs/curr…
perashanid File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
...lugin-content-docs/current/blueprints/tutorial/02-how-to-load-run-blueprints.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| --- | ||
| title: কীভাবে ব্লুপ্রিন্ট চালাবেন | ||
| slug: /blueprints/tutorial/how-to-load-run-blueprints | ||
| description: URL ফ্র্যাগমেন্ট বা blueprint-url প্যারামিটার ব্যবহার সহ ব্লুপ্রিন্ট লোড এবং চালানোর বিভিন্ন পদ্ধতি শিখুন। | ||
| --- | ||
|
|
||
| # কীভাবে ব্লুপ্রিন্ট লোড এবং চালাবেন | ||
|
|
||
| ## URL ফ্র্যাগমেন্ট | ||
|
|
||
| ব্লুপ্রিন্ট চালানোর দ্রুততম উপায় হল এটি একটি WordPress Playground ওয়েবসাইটের URL "ফ্র্যাগমেন্ট"-এ পেস্ট করা। শুধু `.net/` এর পরে একটি `#` যোগ করুন। | ||
|
|
||
| ধরা যাক আপনি নিম্নলিখিত ব্লুপ্রিন্ট ব্যবহার করে WordPress এবং PHP এর নির্দিষ্ট সংস্করণ সহ একটি Playground তৈরি করতে চান: | ||
|
|
||
| ```json | ||
| { | ||
| "$schema": "https://playground.wordpress.net/blueprint-schema.json", | ||
| "preferredVersions": { | ||
| "php": "8.3", | ||
| "wp": "5.9" | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| এটি চালাতে, `https://playground.wordpress.net/#{"preferredVersions": {"php":"8.3", "wp":"5.9"}}` এ যান। আপনি নিচের বাটনটিও ব্যবহার করতে পারেন: | ||
|
|
||
| [<kbd> ব্লুপ্রিন্ট চালান </kbd>](https://playground.wordpress.net/#{"preferredVersions":{"php":"8.3","wp":"5.9"}}) | ||
|
|
||
| পরবর্তী অধ্যায়ে উদাহরণ কোড চালাতে এই পদ্ধতি ব্যবহার করুন, [**আপনার প্রথম ব্লুপ্রিন্ট তৈরি করুন**](/blueprints/tutorial/build-your-first-blueprint)। | ||
|
|
||
| ### Base64 এনকোডেড ব্লুপ্রিন্ট | ||
|
|
||
| কিছু টুল, যেমন GitHub, URL-এ পেস্ট করার সময় ব্লুপ্রিন্টটি সঠিকভাবে ফরম্যাট নাও করতে পারে। এই ক্ষেত্রে, [আপনার ব্লুপ্রিন্টটি Base64-এ এনকোড করুন](https://www.base64encode.org) এবং এটি URL-এ যুক্ত করুন। উদাহরণস্বরূপ, এটি উপরের ব্লুপ্রিন্টের Base64 ফরম্যাট: `eyJwcmVmZXJyZWRWZXJzaW9ucyI6IHsicGhwIjoiOC4zIiwgIndwIjoiNS45In19`। | ||
|
|
||
| এটি চালাতে, [https://playground.wordpress.net/#eyJwcmVmZXJyZWRWZXJzaW9ucyI6IHsicGhwIjoiOC4zIiwgIndwIjoiNS45In19](https://playground.wordpress.net/#eyJwcmVmZXJyZWRWZXJzaW9ucyI6IHsicGhwIjoiOC4zIiwgIndwIjoiNS45In19) এ যান | ||
|
|
||
| ### URL থেকে ব্লুপ্রিন্ট লোড করুন | ||
|
|
||
| যখন আপনার ব্লুপ্রিন্ট খুব বড় হয়ে যায়, তখন আপনি এটি URL-এ `?blueprint-url` কোয়েরি প্যারামিটারের মাধ্যমে লোড করতে পারেন, এভাবে: | ||
|
|
||
| [https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/wordpress/blueprints/trunk/blueprints/latest-gutenberg/blueprint.json](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/wordpress/blueprints/trunk/blueprints/latest-gutenberg/blueprint.json) | ||
|
|
||
| মনে রাখবেন যে ব্লুপ্রিন্টটি অবশ্যই সর্বজনীনভাবে অ্যাক্সেসযোগ্য হতে হবে এবং [সঠিক `Access-Control-Allow-Origin` হেডার](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Access-Control-Allow-Origin) সহ পরিবেশন করতে হবে: | ||
|
|
||
| ``` | ||
| Access-Control-Allow-Origin: * | ||
| ``` | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.