Commit Graph

13 Commits

Author SHA1 Message Date
Boris Verkhovskiy
1924d58159 [python/*] proofread en and ru and all links 2024-04-26 01:48:54 -07:00
Boris Verkhovskiy
c69560d48c github -> GitHub 2024-04-18 22:58:53 -07:00
Boris Verkhovskiy
0aceb41100 [python/*] remove feedback email request 2024-04-07 03:54:02 -07:00
Boris Verkhovskiy
3e687f1a8c Remove leading and trailing empty lines in code blocks 2024-04-06 08:33:50 -07:00
AhmedOmarEissa
0179b04111
[sql/ar] Add translation (#4078)
* Create sql-ar.html.markdown

* Update sql-ar.html.markdown

* Update sql-ar.html.markdown

* sQL EDITS ONE

* SQL Update 2

* Finalising translation

* Update sql-ar.html.markdown

* adding arabic translation for SQL
2023-12-14 15:53:33 +01:00
Simon Shine
ae848c481f Python 3: Use 'filename: learnpython*.py' (no '3')
Before renaming, Python 3 filenames were 'learnpython3*.py'.

This commit removes the '3' part from the filename.

To verify that the filenames were named consistently across
translations prior to this commit, and to change this:

```
ack -H 'filename:' python.html.markdown
find . -name "python-*.markdown" -exec ack -H 'filename:' {} \;

sed -i 's/^filename: learnpython3/filename: learnpython/' \
  python.html.markdown

find . -name "python-*.markdown" -exec \
  sed -i 's/^filename: learnpython3/filename: learnpython/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
8f5fac9895 Python 3: 'language: Python'
Instead of listing 'language: python3' for Python 3, use

    language: Python

as #3450 does.

```
find . -iname "python-*.markdown" -exec \
  sed -i 's/language: python3/language: Python/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
efe00fd06e Switch links: 'python3 <-> python' and 'python <-> pythonlegacy'
The list of references is exhausted by running 'ack docs/python'.
2020-02-12 05:03:08 +01:00
Simon Shine
a3b0585374 Rename Python 3 markdown files into 'python'
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
  fnew=$(echo "$f" | sed 's/python3/python/')
  git mv "$f" "$fnew"
done
2020-02-12 04:54:36 +01:00
Ahmad Hegazy
e8191ae86f
Learn python 3 in Y minutes Arabic translation 2019-02-08 01:43:07 +02:00
Ahmad Hegazy
0debc5077f
Learn python 3 in Y minutes Arabic translation 2019-02-08 01:39:21 +02:00
Adam Bard
f51e8691fc Update html-ar.html.markdown 2017-04-12 13:59:14 -07:00
Ader
bd1a18fb44 [HTML/ar] Translate HTML to Arabic (#2627)
Create ar-ar dir and save the file into it.
This is just a translation of the html English file.
Please consider forcing right-to-left when (and if) this will be added to the website.
2017-01-12 10:02:19 +01:00