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

Feature/add turkish language support 51 #53

Merged
merged 40 commits into from
Jul 11, 2021

Conversation

JCHeist
Copy link
Contributor

@JCHeist JCHeist commented May 29, 2021

No description provided.

@JCHeist
Copy link
Contributor Author

JCHeist commented May 29, 2021

Hey @kcw-grunt , I still need to convert some of these comments back to english. Other than that we should be good to go. Do we test these or have UI Tests?

-Also, side note: Somehow I can't build again. Did anything change with the UnstoppableDomainsResolution pod? That's the one that is seeming to give me issues.

@JCHeist JCHeist marked this pull request as ready for review May 30, 2021 16:47
@JCHeist
Copy link
Contributor Author

JCHeist commented May 30, 2021

@kcw-grunt Still working on getting these comments back to english, but I did test that the turkish localized strings appear when you change the app language on a device. Can't speak to how good the translations are though ha

@JCHeist JCHeist requested a review from kcw-grunt May 30, 2021 16:49
Because:
- needed englsih comments after i put the whole file in google translaete.

wrote a script for this. should have done that sooner.
@JCHeist
Copy link
Contributor Author

JCHeist commented May 31, 2021

@kcw-grunt Comments are done. Looks like it's linked up properly but I may have missed something. I added tr to BartyCrouch but not sure I used it.

Also, I ended up writing a python script because this is a pain haha. Should be able to modify the script a bit and use google tranlate to do a future translation in a few minutes instead of a few hours lol.

Because:
- I think these files need to be source controlled. Especially the .lock and .resolved files. As the workspace get's bigger and we begin to use frameworks, having a source controlled xcode workspace will be necessarry in my opinion.
@JCHeist
Copy link
Contributor Author

JCHeist commented May 31, 2021

Added these files in this ^ commit because I'd like to get your thoughts on if they should be included. And if not, why. @kcw-grunt

Copy link
Contributor

@kcw-grunt kcw-grunt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some of these are going to needed to be reverted as the main changes should be the .strings (TR) file and the added new localization.


/* Fee Selector title */
"FeeSelector.title" = "Processing Speed";
/* Ücret Seçici başlığı */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist Oh I see its confusing but the process is to leave the Comments in english (revert line 238) for example. Line 239 is correct. Meaning only the content on the right side of the label name.


/* High fees error message */
"Import.Error.highFees" = "Transaction fees would cost more than the funds available on this private key.";
/* Yüksek ücret hata mesajı */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist same here and the rest of the file as commented above

Podfile.lock Outdated
@@ -0,0 +1,129 @@
PODS:
- BigInt (5.2.0)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pods should be part of the .gitignore


/* Class = "UILabel"; text = "send"; ObjectID = "QMM-JV-cTG"; */
"QMM-JV-cTG.text" = "**send**";
"QMM-JV-cTG.text" = "send";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist All changes to this file should be reverted as we haven't supported localization for the Today Ext. (someday)

@@ -4603,6 +4599,7 @@
children = (
75A2A79D1DA5934300A983D8 /* Base */,
249F976D236F86240045087A /* id */,
37198C1426549D6000F6F36C /* tr */,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good 😀

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist This should be reverted and check the .gitignore. Let's talk on making sure your env matches mine.

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist This should be reverted and check the .gitignore. Let's talk on making sure your env matches mine.

Copy link
Contributor

@mosadialiou mosadialiou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all IDE... files should be deleted since they are related to your Xcode environment.

@@ -0,0 +1 @@

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist empty file. must be deleted

@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist to be deleted. This file is related to your Xcode environment

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist it looks like a file to delete. @kcw-grunt thoughts?

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist Looks like a file to remove from git. @kcw-grunt thoughts?

JCHeist added 4 commits June 6, 2021 12:23
Because:
- A few strings files should not have been added. Deleted the unused ones xcode added
…odayExtension

Because:
-  we do not currently support TodayExtension and the main.storyboard files were deleted since they were empty
Because:
- FIle was not saved during previous commit
@JCHeist JCHeist requested review from kcw-grunt and mosadialiou June 8, 2021 01:03
kcw-grunt and others added 4 commits June 10, 2021 10:07
- Unignored Podfile.lock
- Added it back into source control
- Reformatted comments
- Included xcshareddata to source control
JCHeist added 11 commits June 11, 2021 07:29
Because:
- before the gitignore is updated, this file needs to be removed so my old xcuserdata is not always in there
Because:
- to ignore all xcuserdata again
Because:
- removed to fix extra file in source
Because:
- For documentation
…ed xcuserdata

Because:
- sometimes it is called [UserName].xcuserdata
Because:
- was red in the workspace
…age-support-51

# Conflicts:
#	loafwallet.xcodeproj/project.pbxproj

Merged in dev env and develop changes
Copy link
Contributor

@kcw-grunt kcw-grunt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist Just let me know when you want me to review since we are now in sync.

@JCHeist
Copy link
Contributor Author

JCHeist commented Jul 8, 2021

sweet @kcw-grunt I will. Sorry Ive been a bit MIA so far this week.

@JCHeist JCHeist requested review from kcw-grunt and removed request for mosadialiou July 9, 2021 02:15
Copy link
Contributor

@kcw-grunt kcw-grunt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just the storyboard issue. Other wise it looks good. Just let me me know.

@@ -0,0 +1,1382 @@
/* About screen website label */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JasperHeist how much fun did you have filling this out? Great? or Fantastic?

@JCHeist JCHeist requested a review from kcw-grunt July 10, 2021 00:31
@kcw-grunt
Copy link
Contributor

👀..need to pull it in a few hours.

@kcw-grunt kcw-grunt dismissed their stale review July 10, 2021 19:12

Changes updated

Copy link
Contributor

@kcw-grunt kcw-grunt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@JCHeist JCHeist merged commit d9d6f04 into develop Jul 11, 2021
@kcw-grunt kcw-grunt deleted the feature/Add-Turkish-Language-support-51 branch July 11, 2021 17:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants