Skip to content

Commit

Permalink
Update gettext scripts for new plugin structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Nodd committed Jun 9, 2016
1 parent 48d61a2 commit e508c66
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
6 changes: 3 additions & 3 deletions gettext_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

if __name__ == "__main__":
do_compile("spyderlib")
do_compile("pylint", "spyplugins/ui/pylint")
do_compile("profiler", "spyplugins/ui/profiler")
do_compile("breakpoints", "spyplugins/ui/breakpoints")
do_compile("pylint", "spyder_pylint")
do_compile("profiler", "spyder_profiler")
do_compile("breakpoints", "spyder_breakpoints")
19 changes: 9 additions & 10 deletions gettext_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@

if __name__ == "__main__":
do_rescan("spyderlib")
do_rescan_files(["spyplugins/ui/pylint/pylint.py",
"spyplugins/ui/pylint/widgets/pylintgui.py"],
"pylint", "spyplugins/ui/pylint")
do_rescan_files(["spyplugins/ui/profiler/profiler.py",
"spyplugins/ui/profiler/widgets/profilergui.py"],
"profiler", "spyplugins/ui/profiler")
do_rescan_files(["spyplugins/ui/breakpoints/breakpoints.py",
"spyplugins/ui/breakpoints/widgets/breakpointsgui.py"],
"breakpoints", "spyplugins/ui/breakpoints")

do_rescan_files(["spyder_pylint/pylint.py",
"spyder_pylint/widgets/pylintgui.py"],
"pylint", "spyder_pylint")
do_rescan_files(["spyder_profiler/profiler.py",
"spyder_profiler/widgets/profilergui.py"],
"profiler", "spyder_profiler")
do_rescan_files(["spyder_breakpoints/breakpoints.py",
"spyder_breakpoints/widgets/breakpointsgui.py"],
"breakpoints", "spyder_breakpoints")

0 comments on commit e508c66

Please sign in to comment.