-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from d1raus/patch-3
Update and rename ar_EG.py to ar_DZ.py
- Loading branch information
Showing
2 changed files
with
86 additions
and
86 deletions.
There are no files selected for viewing
This file contains 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,86 @@ | ||
############################ | ||
## Multi Language Support ## | ||
############################ | ||
|
||
# you can use this as template to create new language support for the project! | ||
|
||
# words not to edit are "colab-convert" "ipynb" "py" | ||
# only edit the message after the equal sign | ||
|
||
############## | ||
## Arabic ## | ||
## ar_DZ ## | ||
############## | ||
|
||
# default messages | ||
help_main_1_msg = 'جميع العلامات اختيارية ولديها تعيينات افتراضية للحصول على أفضل النتائج' | ||
help_main_2_msg = 'استخدام العلامات لتمكين أو تعطيل وظائف معينة تشغيل / إيقاف بشكل افتراضي' | ||
lang_detected_msg = 'تم الاكتشاف كلغة مدعومة ' | ||
outputs_msg = 'تظهر النواتج من المحول' | ||
convert_magic_msg = 'تحويل الاوامر السحرية' | ||
un_comment_msg = 'التعليق على الأوامر السحرية غير المدعومة' | ||
imports_msg = 'حفظ الواردات الجديدة التي أدلى بها المحول' | ||
add_imports_cell_msg = 'إضافة عمليات استيراد جديدة إلى أعلى الملف' | ||
help_called_msg = 'ضع رسالة المساعدة' | ||
file_ext_msg = 'الملف يجب ان يكون بصيغة .ipynb او .py' | ||
set_output_ext_msg = 'تعيين ملف الإخراج إلى' | ||
specify_file_msg = 'حدد على الاقل ملف واحد للتحويل' | ||
usage_msg = 'الاستعمال: colab-convert <input file> <output file> <extra flags>' | ||
un_command_det_msg = 'تم اكتشاف امر غير مدعوم' | ||
comment_un_cmd_msg = 'التعليق خارج أمر غير مدعوم' | ||
def_set_ret_mag_msg = 'الإعدادات الافتراضية هي الاحتفاظ بالأوامر السحرية' | ||
ret_mag_det_msg = 'تم اكتشافه ، لن يتم إجراء عمليات استيراد جديدة' | ||
convert_time_msg = 'استغرق التحويل' | ||
log_file_msg = 'تم إنشاء ملف السجل' | ||
ac_over_nc_msg = 'الأسبقية' | ||
ac_over_nc_fall_msg = 'استعمال' | ||
rm_over_cm_msg = 'الأسبقية' | ||
rm_over_cm_fall_msg = 'استعمال' | ||
cmd_det_msg = 'اكتشف الامر' | ||
in_file_msg = 'ملف الإدخال' | ||
in_file_convert_msg = 'ملف الإدخال للتحويل' | ||
out_file_msg = 'مخرج الملف' | ||
out_file_convert_msg = 'ملف الإخراج للكتابة إليه' | ||
flags_help_msg = 'أعلام إضافية لتمريرها إلى المحول' | ||
help_flag_msg = 'اضهار رسالة المساعدة هذه' | ||
def_flag_msg = 'مجموعة الإشارات الافتراضية' | ||
def_flag_tip_msg = 'يتم تحديد القيم الافتراضية من خلال ملف الإدخال' | ||
convert_msg = 'تحويل السحر' | ||
auto_comment_msg = 'التعليق التلقائي' | ||
avl_flags_msg = 'الأعلام المتوفرة' | ||
avl_flags_tip_msg = 'تبديل بعض العناصر أو إيقاف تشغيلها' | ||
rm_info_msg = 'احتفظ بالأوامر السحرية في الإخراج' | ||
cm_info_msg = 'تحويل الأوامر السحرية إلى كود بيثون' | ||
ac_info_msg = 'تحويل الأوامر السحرية غير المدعومة إلى تعليقات' | ||
nc_info_msg = 'احتفظ بالأوامر السحرية غير المدعومة' | ||
ni_info_msg = 'لا تقم بإضافة الواردات من الأوامر السحرية المحولة' | ||
out_info_msg = 'مخرجات وحدة التحكم في التحويلات وأسطر التعليق' | ||
no_lang_msg = 'لم يتم اكتشاف لغة في الأمر' | ||
lang_info_msg = 'لغة لتغيير رسائل الإخراج إليها' | ||
lang_not_supported_msg = 'اللغة غير مدعومة' | ||
lang_supported_msg = 'اللغة مدعومة' | ||
|
||
# default words | ||
convert_wrd = 'حول' | ||
converted_wrd = 'تم التحويل' | ||
finished_wrd = 'اكتمل' | ||
default_wrd = 'الافتراضية' | ||
to_wrd = 'الى' | ||
flags_wrd = 'الاعلام' | ||
usage_wrd = 'الاستعمال' | ||
example_wrd = 'مثال' | ||
seconds_wrd = 'الثواني' | ||
input_wrd = 'مدخل' | ||
output_wrd = 'مخرج' | ||
outputs_wrd = 'النواتج' | ||
imports_wrd = 'الواردات ' | ||
start_wrd = 'ابدا' | ||
warn_wrd = 'تحذير ' | ||
ok_wrd = 'حسنا' | ||
not_wrd = 'لا' | ||
off_wrd = 'ايقاف' | ||
on_wrd = 'تشغيل' | ||
yes_wrd = 'نعم' | ||
no_wrd = 'لا' | ||
in_wrd = 'في' | ||
out_wrd = 'خارج' |
This file was deleted.
Oops, something went wrong.