Skip to content

Commit 273307c

Browse files
authored
Merge pull request #1708 from Fryguy/remove_zanata
Remove zanata
2 parents d5339f7 + 980a23b commit 273307c

File tree

12 files changed

+14
-199
lines changed

12 files changed

+14
-199
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,5 @@ reports/
1414
# test build
1515
dist/
1616

17-
### Zanata config ###
18-
zanata.local.json
19-
2017
### Git Version file ###
2118
client/version/version.json

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ addons:
2020
install: yarn
2121
script:
2222
- bin/setup
23-
- rake test
23+
- yarn run test
2424
dist: bionic

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
[![Coverage Status](https://coveralls.io/repos/github/ManageIQ/manageiq-ui-service/badge.svg?branch=master)](https://coveralls.io/github/ManageIQ/manageiq-ui-service?branch=master)
55
[![Code Climate](https://codeclimate.com/github/ManageIQ/manageiq-ui-service/badges/gpa.svg)](https://codeclimate.com/github/ManageIQ/manageiq-ui-service)
66
[![Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ManageIQ/manageiq-ui-service?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
7-
[![Translate](https://img.shields.io/badge/translate-zanata-blue.svg)](https://translate.zanata.org/zanata/project/view/manageiq-ui-service)
87

98
The Service UI (SUI), previously Self Service UI (SSUI), for the [ManageIQ](http://github.com/ManageIQ/manageiq) project.
109

Rakefile

Lines changed: 0 additions & 20 deletions
This file was deleted.

client/gettext/po/manageiq-ui-service.pot

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ msgstr ""
4949
msgid "%s was suspended."
5050
msgstr ""
5151

52-
#: ./client/app/layouts/application.html:88
52+
#: ./client/app/layouts/application.html:87
5353
msgid "(Current Group)"
5454
msgstr ""
5555

@@ -77,7 +77,7 @@ msgstr ""
7777
msgid "4 Weeks"
7878
msgstr ""
7979

80-
#: ./client/app/layouts/application.html:65
80+
#: ./client/app/layouts/application.html:64
8181
msgid "About"
8282
msgstr ""
8383

@@ -184,11 +184,11 @@ msgstr ""
184184
msgid "Catalogs"
185185
msgstr ""
186186

187-
#: ./client/app/layouts/application.html:80
187+
#: ./client/app/layouts/application.html:79
188188
msgid "Change Group:"
189189
msgstr ""
190190

191-
#: ./client/app/layouts/application.html:92
191+
#: ./client/app/layouts/application.html:91
192192
msgid "Change to this Group"
193193
msgstr ""
194194

@@ -290,15 +290,15 @@ msgstr ""
290290
msgid "Credentials"
291291
msgstr ""
292292

293-
#: ./client/app/layouts/application.html:100
293+
#: ./client/app/layouts/application.html:99
294294
msgid "Current Group"
295295
msgstr ""
296296

297297
#: ./client/app/components/dashboard/dashboard.html:66
298298
msgid "Current Services"
299299
msgstr ""
300300

301-
#: ./client/app/layouts/application.html:86
301+
#: ./client/app/layouts/application.html:85
302302
msgid "Currently Selected Group"
303303
msgstr ""
304304

@@ -375,7 +375,7 @@ msgstr ""
375375
msgid "Disk Usage"
376376
msgstr ""
377377

378-
#: ./client/app/layouts/application.html:55
378+
#: ./client/app/layouts/application.html:54
379379
msgid "Documentation"
380380
msgstr ""
381381

@@ -624,7 +624,7 @@ msgstr ""
624624
msgid "Login failed."
625625
msgstr ""
626626

627-
#: ./client/app/layouts/application.html:110
627+
#: ./client/app/layouts/application.html:109
628628
#: ./client/app/states/logout/logout.state.js:12
629629
msgid "Logout"
630630
msgstr ""
@@ -1181,7 +1181,7 @@ msgstr ""
11811181
msgid "Shopping Cart"
11821182
msgstr ""
11831183

1184-
#: ./client/app/layouts/application.html:31
1184+
#: ./client/app/layouts/application.html:30
11851185
msgid "Shopping cart"
11861186
msgstr ""
11871187

client/gettext/zanata.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/code_tour.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,6 @@ SUI is only bundled at the beginning of this task, subsequent runs only bundles
2626
#### `yarn vet`
2727
- **ESLint** and **Sass Lint** are both run with this script, this is automatically run by travis upon the creation of a pr.
2828

29-
#### `yarn zanata:upload`
30-
- This uploads our extracted .POT file to the zanata platform so it can be translated.
31-
32-
#### `yarn zanata:download`
33-
- This downloads the translated .po files from the zanata platform so they can be integrated.
34-
3529
## Style and Convention
3630
For additional information regarding coding style and convention employed in this project checkout:
3731

docs/developer_setup.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,6 @@ yarn
3838
- If you already have `manageiq` core running on port `:3000` you can verify that the build worked correctly by visiting:
3939
[http://localhost:3000/ui/service/login](http://localhost:3000/ui/service/)
4040

41-
### Zanata setup
42-
43-
- To upload our download files to Zanata you need create a file in the root of the project named zanata.local.json
44-
```
45-
{
46-
"apiKey":"",
47-
"project":"",
48-
"version":"",
49-
"user":""
50-
}
51-
```
52-
- Optionally you can set up these same variables as bash environment variables instead.
53-
5441
### Development
5542

5643
- From the `manageiq` directory, start the ManageIQ application to initiate the server listening on

language/index.js

Lines changed: 0 additions & 58 deletions
This file was deleted.

language/travis.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)