-
Notifications
You must be signed in to change notification settings - Fork 118
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
Russiano #2 #319
Russiano #2 #319
Conversation
Yes, that should be perfectly fine. |
It looks like commit 13b51f3 reformatted the file. I have 2 small concerns about this:
|
I don't want to argue about tabs versus spaces (this is your repository and the rules are yours, and for the machine, the markup between these two positions is not particularly important), but don't you think tabs are better and should be entered for other languages? 1 tab (8 spaces) this is 1 kb, while 1 space is 1 kb (respectively, this is 4 kb for you). eg. your ENG language file has the size: 6.68 KB, but if you remove the spaces and leave the tabs, you can compress the file to a size of 6.45 KB. In any case, you have the last word, should I give it back? |
I can see that point of view, though I'd still prefer 4 spaces for consistency. (Once it's compiled into the |
Brought it back. |
Signed-off-by: Andrew Gunnerson <accounts+github@chiller3.com>
Tell me, is it possible to combine these 2 lines with this 1 argument?
Now
<string name="output_dir_bottom_sheet_filename_template">Шаблон имени файла</string>
<string name="filename_template_dialog_title">Шаблон имени файла</string>
After
<string name="output_dir_bottom_sheet_filename_template">Шаблон имени файла</string>
<string name="filename_template_dialog_title">@string/output_dir_bottom_sheet_filename_template</string>
Or is it not possible to do this for the title?