-
Notifications
You must be signed in to change notification settings - Fork 60
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
New arabic language package #56
New arabic language package #56
Conversation
added Arabic langpack
Add entry for Arabic language in the languages dropdown menu
Some fixes on the translation
@msaied93 thank you for the contribution. Can you try to look into how to change the direction to RTL ? |
Add an event handler to switch page direction when choosing ar lang.
Well, I guess that does the trick. |
@@ -252,6 +253,19 @@ $(document).on("ready", function(){ | |||
} | |||
|
|||
}); | |||
|
|||
//change page direction when changing lang into/from ar | |||
$(window.lang).on("afterUpdate", function (event, currentLang, newLang, pack1, pack2) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are you passing the arguments event, pack1 and pack2 ? I dont see where you are using them below
There seem to be other conflicts with the animation and general layout. This PR will require much more work than just changing the css to direction: rtl. IMO. |
Can you move the actual translations to subversions? |
I've opened #81 to implement the missing features, closing |
Hey, I added Arabic translation; however, there is still more work to be done: the page direction should become RTL when choosing Arabic language... not sure how to do it.