-
Notifications
You must be signed in to change notification settings - Fork 71
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
Arabic translating file #137
Open
ASammour
wants to merge
44
commits into
lang-deploy
Choose a base branch
from
master
base: lang-deploy
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 31 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
e2fa0ec
added purecss.io to frameworks
gresakg 7ef9ad1
Merge pull request #119 from gresakg/master
55a177a
Merge pull request #118 from incompl/lang-deploy
29c1588
Update Bocoup ad zone id
ajpiano 7586a87
Merge pull request #120 from ajpiano/fix-zone-id
73f4578
add ftp-deploy to dependencies
033740e
add grunt-ftp-deploy to dependencies
dfde762
Translated word 'Errors'
royopa 755abc0
Merge pull request #121 from royopa/patch-1
9ad87ff
fixes #122
incompl 1ff1f34
Being kinder to math
incompl 7832e0f
Being kinder to math
incompl 6baeffa
Update to work with latest jekyll + pygments
incompl 7ae7169
fix textile sub-bullets
incompl 1518f01
Fixed typo
cakecatz 00e8fe4
Merge pull request #126 from cakecatz/master
incompl 185ee71
Fix spanish traslations
1f1fa61
Merge pull request #127 from KarloxMartinez/master
incompl d0ee22d
// fix a chinese translation problem
benniks 82c67de
Merge pull request #4 from Benniks/master
zmmbreeze 693a2db
Merge pull request #129 from zmmbreeze/master
incompl 6f926b8
fix typo
isdh 520a9df
Merge pull request #131 from isdh/master
incompl d3c8bb8
Fix italian typo
NKjoep d53d895
Merge pull request #132 from NKjoep/ita-fix-typo
incompl d9c797e
Fix typo
sanspace 27aa986
Merge pull request #133 from sanspace/patch-1
incompl 91ec42a
Local changes
ec4ad36
modified some CHS translation
edwardwang0302 4ae548a
Fixed some typos in Spanish translation
PabloCastellano d3f6a6a
Merge pull request #138 from PabloCastellano/master
incompl 3392add
Merge pull request #135 from Wachisu/nl-changes
incompl 0166f17
Merge pull request #136 from edwardwang0302/CHS_Modification
incompl 8b87261
arabic
incompl 3bc90ef
work on ar
incompl 6461575
ar3
incompl 6f946f3
ar-translator
incompl 4d1bf58
remove dead frameworks
incompl b57d0ae
Update README.textile
incompl d1dc6cc
Update README.textile
incompl 49fa843
Remove "screen and" from media query examples
jonathanberger 8b63a31
Merge pull request #152 from jonathanberger/patch-1
incompl e34dcb6
Update while moving to netlify
incompl 7550845
Fix page titles
incompl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -53,10 +53,10 @@ box_model.title: "the box model" | |
box_model.intro: "While we're talking about width, we should talk about width's big caveat: the <em>box model</em>. When you set the width of an element, the element can actually appear bigger than what you set: the element's border and padding will stretch out the element beyond the specified width. Look at the following example, where two elements with the same width value end up different sizes in the result." | ||
box_model.simple: "I'm smaller..." | ||
box_model.fancy: "And I'm bigger!" | ||
box_model.outro: "For generations, the solution to this problem has been math. CSS authors have always just written a smaller width value than what they wanted, subtracting out the padding and border. Thankfully, you don't have to do that anymore..." | ||
box_model.outro: "For generations, the solution to this problem has been extra math. CSS authors have always just written a smaller width value than what they wanted, subtracting out the padding and border. Thankfully, you don't have to do that anymore..." | ||
|
||
box_sizing.title: "box-sizing" | ||
box_sizing.1: "Over the generations, people realized that math is not fun, so a new CSS property called <code>box-sizing</code> was created. When you set <code>box-sizing: border-box;</code> on an element, the padding and border of that element no longer increase its width. Here is the same example as the previous page, but with <code>box-sizing: border-box;</code> on both elements:" | ||
box_sizing.1: "The original box model behavior was eventually considered unintuitive, so a new CSS property called <code>box-sizing</code> was created. When you set <code>box-sizing: border-box;</code> on an element, the padding and border of that element no longer increase its width. Here is the same example as the previous page, but with <code>box-sizing: border-box;</code> on both elements:" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this change is already live, does your PR need to be rebased? |
||
box_sizing.simple: "We're the same size now!" | ||
box_sizing.fancy: "Hooray!" | ||
box_sizing.2: "Since this is so much better, some authors want all elements on all their pages to always work this way. Such authors put the following CSS on their pages:" | ||
|
@@ -164,7 +164,7 @@ flexbox.centering.title: "Centering using Flexbox" | |
flexbox.centering.1: "Finally, it's easy to vertically center something in CSS!" | ||
|
||
frameworks.title: "css frameworks" | ||
frameworks.1: "Because CSS layout is so tricky, there are CSS frameworks out there to help make it easier. Here are a few if you want to check them out. Using a framework is only good idea if the framework really does what you need your site to do. They're no replacement for knowing how CSS works." | ||
frameworks.1: "Because CSS layout is so tricky, there are CSS frameworks out there to help make it easier. Here are a few if you want to check them out. Using a framework is only a good idea if the framework really does what you need your site to do. They're no replacement for knowing how CSS works." | ||
frameworks.2: "That's it! If you have any feedback on this site, please <a href=\"https://twitter.com/intent/tweet?source=webclient&text=%40_gsmith\">let me know on Twitter</a>!" | ||
|
||
about.title: "about this site" | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
What does this do?
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.
Sorry, But I'm new at Github. Can you please see my pull request above?. Also, I've sent you an e-mail since 2 or more weeks about the same subject, and I got no reply!.