Skip to content

Commit

Permalink
Merge pull request #9 from SayakMukhopadhyay/python3
Browse files Browse the repository at this point in the history
Complete migration to Python 3
  • Loading branch information
SayakMukhopadhyay authored Jan 11, 2020
2 parents 56640a8 + 1e2e1f0 commit 3139767
Show file tree
Hide file tree
Showing 13 changed files with 249 additions and 46 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,8 @@ venv.bak/
.mypy_cache/

# VSCode
.vscode/
.vscode/
.vs/
/config.py
/myNotebook.py
/l10n.py
2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/EDMC-Discord-Presence.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions L10n/en.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/* Language name */
"!Language" = "English";

/* Idle message. [load.py] */
"Connecting CMDR Interface" = "Connecting CMDR Interface"

/* Details of system. [load.py] */
"In system {system}" = "In system {system}"

/* If docked. [load.py] */
"Docked at {station}" = "Docked at {station}"

/* While jumping. [load.py] */
"Jumping" = "Jumping"

/* If Hyperspace jumping. [load.py] */
"Jumping to system {system}" = "Jumping to system {system}"

/* If Supercruise jumping. [load.py] */
"Preparing for supercruise" = "Preparing for supercruise"

/* When supercruising. [load.py] */
"Supercruising" = "Supercruising"

/* When in normal space. [load.py] */
"Flying in normal space" = "Flying in normal space"

/* When in normal space and near a station. [load.py] */
"Flying near {station}" = "Flying near {station}"

/* When approaching a body. [load.py] */
"Approaching {body}" = "Approaching {body}"

/* When landed on a body. [load.py] */
"Landed on {body}" = "Landed on {body}"

/* After taking off from a body. [load.py] */
"Flying around {body}" = "Flying around {body}"

/* When in SRV. [load.py] */
"In SRV on {body}" = "In SRV on {body}"

/* When in SRV and ship has taken off. [load.py] */
"In SRV on {body}, ship in orbit" = "In SRV on {body}, ship in orbit"
44 changes: 44 additions & 0 deletions L10n/fr.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/* Language name */
"!Language" = "Français";

/* Idle message. [load.py] */
"Connecting CMDR Interface" = "Interfaçage au Vaissea"

/* Details of system. [load.py] */
"In system {system}" = "Dans le système {system}"

/* If docked. [load.py] */
"Docked at {station}" = "Docké à {station}"

/* While jumping. [load.py] */
"Jumping" = "Saut"

/* If Hyperspace jumping. [load.py] */
"Jumping to system {system}" = "Saut vers {system}"

/* If Supercruise jumping. [load.py] */
"Preparing for supercruise" = "Préparation d\'un saut en supercruise"

/* When supercruising. [load.py] */
"Supercruising" = "Supercruise"

/* When in normal space. [load.py] */
"Flying in normal space" = "En vol dans l\'espace"

/* When in normal space and near a station. [load.py] */
"Flying near {station}" = "En vol près de {station}"

/* When approaching a body. [load.py] */
"Approaching {body}" = "En approche de {body}"

/* When landed on a body. [load.py] */
"Landed on {body}" = "Posé sur {body}"

/* After taking off from a body. [load.py] */
"Flying around {body}" = "Vol autour de {body}"

/* When in SRV. [load.py] */
"In SRV on {body}" = "En SRV sur {body}"

/* When in SRV and ship has taken off. [load.py] */
"In SRV on {body}, ship in orbit" = "En SRV sur {body}, vaisseau en orbite"
11 changes: 11 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]

[requires]
python_version = "3.7"
20 changes: 20 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified README.md
Binary file not shown.
Loading

0 comments on commit 3139767

Please sign in to comment.