Skip to content
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

Adding bengali language support #865

Open
wants to merge 4 commits into
base: 1.2.1-release
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Some Caveats Up Front:
* Feedback may take time
* Merges may take time

**--> The current release branch is [1.0.9](https://github.com/chriskiehl/Gooey/tree/1.0.9-release) <--**. All PRs should be opened against this branch.
**--> The current release branch is [1.2.1](https://github.com/chriskiehl/Gooey/tree/1.2.1-release) <--**. All PRs should be opened against this branch.


### Getting Started:
Expand Down
50 changes: 50 additions & 0 deletions gooey/languages/bengali.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"browse": "ব্রাউজ",
"cancel": "বাতিল",
"checkbox_label": "সক্রিয় করুন",
"choose_colour": "রঙ নির্বাচন করুন",
"choose_date": "তারিখ নির্বাচন করুন",
"choose_time": "সময় নির্বাচন করুন",
"choose_file": "ফাইল নির্বাচন করুন",
"choose_folder": "ফোল্ডার নির্বাচন করুন",
"choose_folders_msg": "এক বা একাধিক ফোল্ডার নির্বাচন করুন:",
"choose_folders_title": "ফোল্ডারের জন্য ব্রাউজ করুন",
"choose_one": "একটি নির্বাচন করুন",
"close": "বন্ধ করুন",
"close_program": "প্রোগ্রাম বন্ধ করবেন?",
"edit": "সম্পাদনা করুন",
"enter_filename": "ফাইলের নাম লিখুন",
"error_required_fields": "প্রয়োজনীয় বিভাগে সব ক্ষেত্র পূরণ করতে হবে!",
"error_title": "ভুল",
"execution_finished": "মৃত্যুদন্ড শেষ",
"finished_error": "একটি ভুল হয়েছে৷",
"finished_forced_quit": "ব্যবহারকারী দ্বারা সমাপ্ত",
"finished_msg": "সব শেষ! আপনি এখন নিরাপদে প্রোগ্রাম বন্ধ করতে পারেন৷",
"finished_title": "সমাপ্ত",
"dropdown.no_matches": "কোন মিল পাওয়া যায়নি",
"ok": "ঠিক",
"open_file": "ফাইল খুলুন",
"open_files": "ফাইল গুলো খুলুন",
"optional_args_msg": "ঐচ্ছিক আর্গুমেন্ট",
"required_args_msg": "প্রয়োজনীয় আর্গুমেন্ট",
"restart": "পুনরায় চালু করুন",
"running_msg": "অ্যাপ্লিকেশনটি কাজ শেষ করার সময় অনুগ্রহ করে অপেক্ষা করুন৷। \nএটি কয়েক মিনিট সময় লাগতে পারে।",
"running_title": "চলমান ",
"select_date": "একটি তারিখ নির্বাচন করুন",
"select_time": "একটি সময় নির্বাচন করুন",
"select_option": "বিকল্প নির্বাচন",
"settings_title": "সেটিংস",
"simple_config": "কমান্ড লাইন আর্গুমেন্ট লিখুন",
"start": "শুরু করুন",
"status": "স্ট্যাটাস",
"stop": "থামুন",
"stop_task": "টাস্ক থামাবেন?",
"success_message": "প্রোগ্রাম সফলভাবে সম্পন্ন হয়েছে!",
"sure_you_want_to_exit": "আপনি কি নিশ্চিত আপনি প্রস্থান করতে চান?",
"sure_you_want_to_stop": "আপনি কি নিশ্চিত যে আপনি টাস্ক বন্ধ করতে চান? \nহঠাৎ টাস্ক বন্ধ করলে আপনার ডেটা দূষিত করতে পারে!",
"uh_oh": "\nহায় কপাল! মনে হচ্ছে কোনো সমস্যা হয়েছে। \nকী ভুল হয়েছে তা সফটওয়্যার ডেভেলপারকে জানাতে স্ট্যাটাস উইন্ডো থেকে টেক্সট কপি করুন.\n",
"validation_failed": "এক বা একাধিক ক্ষেত্র যাচাইকরণ ব্যর্থ হয়েছে৷",
"dialog_button_yes": "হ্যাঁ",
"dialog_button_no": "না",
"dialog_button_ok": "ঠিক"
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
're-wx>=0.0.9',
'typing-extensions==3.10.0.2',
'wxpython>=4.1.0',
'dataclasses>=0.8',
"dataclasses>=0.8;python_version<'3.7'",
]

setup(
Expand Down