faalis 1.0.0.alpha0 → 1.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +44 -22
  3. data/Rakefile +1 -0
  4. data/app/assets/javascripts/faalis/angular-manifest.js +1 -0
  5. data/app/assets/javascripts/faalis/dashboard/app.js +4 -3
  6. data/app/assets/javascripts/faalis/dashboard/application.js.erb +0 -1
  7. data/app/assets/javascripts/faalis/dashboard/functions.js.erb +5 -7
  8. data/app/assets/javascripts/faalis/dashboard/init.js +1 -2
  9. data/app/assets/javascripts/faalis/dashboard/modules/fields/datetime.js +5 -3
  10. data/app/assets/javascripts/faalis/dashboard/modules/fields/image.js +46 -105
  11. data/app/assets/javascripts/faalis/dashboard/modules/services/upload_service.js +17 -0
  12. data/app/assets/javascripts/faalis/dashboard/variables.js.erb +1 -1
  13. data/app/assets/javascripts/faalis/{locale → locales}/en.json +0 -0
  14. data/app/assets/javascripts/faalis/{locale → locales}/fa.json +0 -0
  15. data/app/assets/javascripts/faalis/locales/translations.fa.js +4 -0
  16. data/app/assets/locale/templates.fa.pot +275 -0
  17. data/app/assets/locale/templates.pot +0 -8
  18. data/app/controllers/faalis/#api_controller.rb# +51 -0
  19. data/app/controllers/faalis/#dashboard_controller.rb# +65 -0
  20. data/app/controllers/faalis/application_controller.rb +9 -10
  21. data/app/controllers/faalis/dashboard_controller.rb +2 -2
  22. data/app/models/faalis/user.rb +11 -11
  23. data/app/models/faalis/user/auth_definitions.rb +2 -14
  24. data/app/models/faalis/user/mongoid_fields.rb +0 -1
  25. data/app/views/angularjs_templates/fields/datetime/datetime.html +7 -1
  26. data/app/views/angularjs_templates/fields/image/image.html +1 -1
  27. data/app/views/angularjs_templates/index.html +1 -6
  28. data/app/views/angularjs_templates/modules.html +1 -1
  29. data/app/views/devise/registrations/new.html.erb +5 -1
  30. data/app/views/devise/sessions/new.html.erb +17 -16
  31. data/app/views/devise/shared/_links.erb +8 -6
  32. data/app/views/layouts/faalis/application.html.erb +0 -4
  33. data/app/views/layouts/faalis/dashboard.html.erb +2 -2
  34. data/app/views/layouts/faalis/simple.html.erb +18 -20
  35. data/config/locales/fa/LC_MESSAGES/faalis.mo +0 -0
  36. data/config/locales/fa/faalis.edit.mo +0 -0
  37. data/config/locales/fa/faalis.edit.po +104 -0
  38. data/config/locales/fa/faalis.mo +0 -0
  39. data/config/locales/fa/faalis.po +29 -108
  40. data/{app/controllers/faalis/#1.sh# → config/locales/fa/faalis.po.time_stamp} +0 -0
  41. data/config/locales/faalis.pot +10 -88
  42. data/config/routes.rb +16 -3
  43. data/lib/faalis.rb +1 -0
  44. data/lib/faalis/discovery/permissions.rb +10 -3
  45. data/lib/faalis/engine.rb +21 -0
  46. data/lib/faalis/generators/concerns.rb +2 -0
  47. data/lib/faalis/generators/concerns/allow_query_on.rb +8 -12
  48. data/lib/faalis/generators/concerns/angular.rb +4 -5
  49. data/lib/faalis/generators/concerns/child.rb +31 -0
  50. data/lib/faalis/generators/concerns/fieldset.rb +2 -2
  51. data/lib/faalis/generators/concerns/globalize.rb +14 -0
  52. data/lib/faalis/generators/concerns/hstore.rb +19 -0
  53. data/lib/faalis/generators/concerns/model.rb +3 -3
  54. data/lib/faalis/generators/concerns/parent.rb +4 -6
  55. data/lib/faalis/generators/concerns/required.rb +2 -1
  56. data/lib/faalis/generators/concerns/resource_name.rb +1 -0
  57. data/lib/faalis/generators/concerns/tabs.rb +4 -7
  58. data/lib/faalis/generators/concerns/where.rb +1 -3
  59. data/lib/faalis/generators/dashboard_scaffold.rb +2 -0
  60. data/lib/faalis/generators/fields/#relation.rb# +61 -0
  61. data/lib/faalis/i18n.rb +6 -1
  62. data/lib/faalis/middlewares.rb +1 -0
  63. data/lib/faalis/middlewares/locale.rb +29 -0
  64. data/lib/faalis/route.rb +12 -19
  65. data/lib/faalis/version.rb +1 -1
  66. data/lib/generators/faalis/install_all_generator.rb +5 -3
  67. data/lib/generators/faalis/install_generator.rb +4 -0
  68. data/lib/generators/faalis/js/install_i18n_generator.rb +1 -1
  69. data/lib/generators/faalis/scaffold_generator.rb +72 -25
  70. data/lib/generators/faalis/templates/i18n/Gruntfile.js.erb +2 -2
  71. data/lib/generators/faalis/templates/i18n/fa.js +2 -2
  72. data/lib/generators/faalis/templates/js/list_view/details.html.erb +26 -3
  73. data/lib/generators/faalis/templates/views/create.json.jbuilder.erb +2 -1
  74. data/lib/generators/faalis/templates/views/index.json.jbuilder.erb +4 -2
  75. data/lib/generators/faalis/templates/views/show.json.jbuilder.erb +2 -1
  76. data/lib/generators/faalis/templates/views/update.json.jbuilder.erb +2 -1
  77. data/lib/tasks/faalis_tasks.rake +25 -27
  78. data/lib/tasks/grunt/Gruntfile.js +2 -2
  79. data/lib/tasks/sync.rake +3 -4
  80. metadata +43 -90
  81. data/app/assets/javascripts/faalis/dashboard/modules/list-view.js +0 -341
  82. data/app/assets/javascripts/faalis/dashboard/modules/modules.js +0 -75
  83. data/app/assets/javascripts/faalis/dashboard/modules/nav.js.erb +0 -78
  84. data/app/assets/stylesheets/faalis/base.css.scss +0 -334
  85. data/app/assets/stylesheets/faalis/dashboard/dashboard.css.scss +0 -246
  86. data/app/assets/stylesheets/faalis/dashboard/list_view.css.scss +0 -169
  87. data/app/assets/stylesheets/faalis/dashboard/ltr/application.css +0 -29
  88. data/app/assets/stylesheets/faalis/dashboard/ltr/base.css.scss.erb +0 -33
  89. data/app/assets/stylesheets/faalis/dashboard/ltr/buttons.css.scss.erb +0 -55
  90. data/app/assets/stylesheets/faalis/dashboard/ltr/direction.css.scss +0 -38
  91. data/app/assets/stylesheets/faalis/dashboard/ltr/foundation_and_overrides.css.scss +0 -1261
  92. data/app/assets/stylesheets/faalis/dashboard/ltr/time.css.scss +0 -58
  93. data/app/assets/stylesheets/faalis/dashboard/rtl/application.css +0 -27
  94. data/app/assets/stylesheets/faalis/dashboard/rtl/base.css.scss.erb +0 -35
  95. data/app/assets/stylesheets/faalis/dashboard/rtl/buttons.css.scss.erb +0 -45
  96. data/app/assets/stylesheets/faalis/dashboard/rtl/direction.css.scss +0 -37
  97. data/app/assets/stylesheets/faalis/dashboard/rtl/foundation_and_overrides.css.scss +0 -1264
  98. data/app/assets/stylesheets/faalis/dashboard/share/time.css.scss +0 -57
  99. data/app/assets/stylesheets/faalis/dashboard/sidebar.css.scss +0 -93
  100. data/app/assets/stylesheets/faalis/devise.css.scss +0 -34
  101. data/app/assets/stylesheets/faalis/groups.css +0 -4
  102. data/app/assets/stylesheets/faalis/home.css.scss +0 -14
  103. data/app/assets/stylesheets/faalis/ltr/application.css +0 -20
  104. data/app/assets/stylesheets/faalis/ltr/buttons.css.scss.erb +0 -45
  105. data/app/assets/stylesheets/faalis/ltr/foundation_and_overrides.scss +0 -1258
  106. data/app/assets/stylesheets/faalis/mixins.css.scss +0 -15
  107. data/app/assets/stylesheets/faalis/rtl/application.css +0 -20
  108. data/app/assets/stylesheets/faalis/rtl/buttons.css.scss.erb +0 -50
  109. data/app/assets/stylesheets/faalis/rtl/foundation_and_overrides.css.scss +0 -1264
  110. data/app/assets/stylesheets/faalis/users.css +0 -4
  111. data/app/assets/stylesheets/faalis/variables.css.scss +0 -102
  112. data/app/controllers/faalis/api/v1/workflows_controller.rb +0 -18
  113. data/app/views/angularjs_templates/list-view/index.html +0 -82
  114. data/app/views/faalis/api/v1/workflows/index.json.jbuilder +0 -5
  115. data/app/workflows/faalis/administration_workflow.rb +0 -7
  116. data/spec/dummy/log/development.log +0 -0
  117. data/spec/dummy/log/test.log +0 -15
  118. data/spec/dummy/tmp/ember-rails/ember-data.js +0 -10204
  119. data/spec/dummy/tmp/ember-rails/ember.js +0 -36991
  120. data/spec/factories/faalis_workflows.rb +0 -7
  121. data/spec/models/faalis/workflow_spec.rb +0 -7
@@ -0,0 +1,104 @@
1
+ # Persian translations for faalis package.
2
+ # Copyright (C) 2013 THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the faalis package.
4
+ # lxsameer <lxsameer@gnu.org>, 2013.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: faalis 1.0.0\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "PO-Revision-Date: 2014-09-05 15:51+0330\n"
11
+ "Last-Translator: Behnam Ahmad Khan Beigi <b3hnam@gnu.org>\n"
12
+ "Language-Team: Persian\n"
13
+ "Language: fa\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=; plural=;\n"
18
+ "X-Generator: Poedit 1.5.4\n"
19
+ "POT-Creation-Date: \n"
20
+
21
+ msgid "Authentication"
22
+ msgstr "احراز هویت"
23
+
24
+ msgid "Change your password"
25
+ msgstr "تغییر کلمه عبور"
26
+
27
+ msgid "Confim Password"
28
+ msgstr "تایید کلمه عبور"
29
+
30
+ msgid "E-mail"
31
+ msgstr "ایمیل"
32
+
33
+ msgid "Email"
34
+ msgstr "ایمیل"
35
+
36
+ msgid "Faalis"
37
+ msgstr ""
38
+
39
+ msgid "For changing your password fill and submit the form."
40
+ msgstr ""
41
+
42
+ msgid "For registration you can fill the form ."
43
+ msgstr ""
44
+
45
+ msgid "Forgot your password?"
46
+ msgstr "کلمه عبور را فراموش کرده‌اید؟"
47
+
48
+ msgid "If you are a registered member you can go to signin page"
49
+ msgstr ""
50
+
51
+ msgid ""
52
+ "If you forget your password you can fill this page for reseting password"
53
+ msgstr ""
54
+
55
+ msgid "Item(s)"
56
+ msgstr "گزینه‌ها"
57
+
58
+ msgid "Languages"
59
+ msgstr "زبان‌ها"
60
+
61
+ msgid "Menu"
62
+ msgstr "منو"
63
+
64
+ msgid "Password"
65
+ msgstr "کلمه عبور"
66
+
67
+ msgid "Remember me"
68
+ msgstr "به خاطر بسپار"
69
+
70
+ msgid "Resend condirmation"
71
+ msgstr "ارسال مجدد کلمه عبور"
72
+
73
+ msgid "Resend confirmation instructions"
74
+ msgstr "ارسال مجدد تاییدیه"
75
+
76
+ msgid "Send me reset password instructions"
77
+ msgstr "ارسال ایمیل تغییر کلمه عبور"
78
+
79
+ msgid "Sign In"
80
+ msgstr "ورود"
81
+
82
+ msgid "Sign UP"
83
+ msgstr "ثبت نام"
84
+
85
+ msgid "Sign Up"
86
+ msgstr "ثبت نام"
87
+
88
+ msgid "Sign in"
89
+ msgstr "ورود"
90
+
91
+ msgid "You can access the member information by registration on this site."
92
+ msgstr ""
93
+
94
+ msgid "You don't have access to this page"
95
+ msgstr ""
96
+
97
+ msgid "You need to login to use dashboard."
98
+ msgstr "برای ورود ابتدا نام کاربری و کلمه عبور را وارد کنید"
99
+
100
+ msgid "can %s %s"
101
+ msgstr ""
102
+
103
+ msgid "some text."
104
+ msgstr ""
@@ -7,76 +7,42 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: faalis 1.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2013-11-09 17:12+0330\n"
11
- "PO-Revision-Date: 2013-11-09 15:16+0330\n"
12
- "Last-Translator: lxsameer <lxsameer@gnu.org>\n"
10
+ "PO-Revision-Date: 2014-09-05 15:51+0330\n"
11
+ "Last-Translator: Behnam Ahmad Khan Beigi <b3hnam@gnu.org>\n"
13
12
  "Language-Team: Persian\n"
14
13
  "Language: fa\n"
15
14
  "MIME-Version: 1.0\n"
16
15
  "Content-Type: text/plain; charset=UTF-8\n"
17
16
  "Content-Transfer-Encoding: 8bit\n"
18
17
  "Plural-Forms: nplurals=; plural=;\n"
19
- "\n"
20
-
21
- msgid " Sign in "
22
- msgstr ""
23
-
24
- msgid "Activate"
25
- msgstr ""
26
-
27
- msgid "Active"
28
- msgstr ""
18
+ "X-Generator: Poedit 1.5.4\n"
29
19
 
30
20
  msgid "Authentication"
31
- msgstr ""
32
-
33
- msgid "Can not connect to remote, please try again"
34
- msgstr ""
21
+ msgstr "احراز هویت"
35
22
 
36
23
  msgid "Change your password"
37
- msgstr ""
24
+ msgstr "تغییر کلمه عبور"
38
25
 
39
26
  msgid "Confim Password"
40
- msgstr ""
41
-
42
- msgid "Current Page"
43
- msgstr ""
44
-
45
- msgid "Dashboard"
46
- msgstr "بخش کاریری"
47
-
48
- msgid "Delete"
49
- msgstr "حذف"
27
+ msgstr "تایید کلمه عبور"
50
28
 
51
29
  msgid "E-mail"
52
30
  msgstr "ایمیل"
53
31
 
54
- msgid "Edit"
55
- msgstr "ویرایش"
56
-
57
32
  msgid "Email"
58
33
  msgstr "ایمیل"
59
34
 
60
- msgid "For changing your password fill and submit the form."
35
+ msgid "Faalis"
61
36
  msgstr ""
62
37
 
63
- msgid "For registration you can fill the form ."
38
+ msgid "For changing your password fill and submit the form."
64
39
  msgstr ""
65
40
 
66
- msgid "For sign in enter your information !"
41
+ msgid "For registration you can fill the form ."
67
42
  msgstr ""
68
43
 
69
44
  msgid "Forgot your password?"
70
- msgstr ""
71
-
72
- msgid "Given page does not exists"
73
- msgstr ""
74
-
75
- msgid "Groups"
76
- msgstr ""
77
-
78
- msgid "ID"
79
- msgstr "ردیف"
45
+ msgstr "کلمه عبور را فراموش کرده‌اید؟"
80
46
 
81
47
  msgid "If you are a registered member you can go to signin page"
82
48
  msgstr ""
@@ -85,97 +51,52 @@ msgid "If you forget your password you can fill this page for reseting password"
85
51
  msgstr ""
86
52
 
87
53
  msgid "Item(s)"
88
- msgstr ""
89
-
90
- msgid "Its simple to register this site"
91
- msgstr ""
54
+ msgstr "گزینه‌ها"
92
55
 
93
56
  msgid "Languages"
94
- msgstr ""
57
+ msgstr "زبان‌ها"
95
58
 
96
- msgid "Login using"
97
- msgstr ""
98
-
99
- msgid "Membership"
100
- msgstr ""
101
-
102
- msgid "Name"
103
- msgstr ""
104
-
105
- msgid "New"
106
- msgstr ""
107
-
108
- msgid "New User"
109
- msgstr ""
59
+ msgid "Menu"
60
+ msgstr "منو"
110
61
 
111
62
  msgid "Password"
112
- msgstr ""
63
+ msgstr "کلمه عبور"
113
64
 
114
- msgid "Faalis"
115
- msgstr ""
116
-
117
- msgid "Register"
118
- msgstr "ثبت نام"
65
+ msgid "Remember me"
66
+ msgstr "به خاطر بسپار"
119
67
 
120
68
  msgid "Resend condirmation"
121
- msgstr ""
69
+ msgstr "ارسال مجدد کلمه عبور"
122
70
 
123
71
  msgid "Resend confirmation instructions"
124
- msgstr ""
125
-
126
- msgid "Search"
127
- msgstr "جسنتو جو"
128
-
129
- msgid "Select All"
130
- msgstr ""
131
-
132
- msgid "Selected"
133
- msgstr ""
134
-
135
- msgid "Selected record(s) removed successfully."
136
- msgstr ""
72
+ msgstr "ارسال مجدد تاییدیه"
137
73
 
138
74
  msgid "Send me reset password instructions"
139
- msgstr ""
140
-
141
- msgid "Show"
142
- msgstr ""
75
+ msgstr "ارسال ایمیل تغییر کلمه عبور"
143
76
 
144
77
  msgid "Sign In"
145
- msgstr ""
78
+ msgstr "ورود"
146
79
 
147
80
  msgid "Sign UP"
148
- msgstr ""
81
+ msgstr "ثبت نام"
149
82
 
150
83
  msgid "Sign Up"
151
- msgstr ""
84
+ msgstr "ثبت نام"
152
85
 
153
86
  msgid "Sign in"
154
- msgstr ""
155
-
156
- msgid "Some slug"
157
- msgstr ""
158
-
159
- msgid "There is not record"
160
- msgstr ""
87
+ msgstr "ورود"
161
88
 
162
- msgid "Toggle Select"
89
+ msgid "You can access the member information by registration on this site."
163
90
  msgstr ""
164
91
 
165
- msgid "Total Pages"
92
+ msgid "You don't have access to this page"
166
93
  msgstr ""
167
94
 
168
- msgid "Users"
169
- msgstr "کاربران"
95
+ msgid "You need to login to use dashboard."
96
+ msgstr "برای ورود ابتدا نام کاربری و کلمه عبور را وارد کنید"
170
97
 
171
- msgid "You can access the member information by registration on this site."
172
- msgstr ""
173
-
174
- msgid "remember me"
98
+ msgid "can %s %s"
175
99
  msgstr ""
176
100
 
177
101
  msgid "some text."
178
102
  msgstr ""
179
-
180
- msgid "you can use members area with registratio"
181
- msgstr ""
@@ -8,8 +8,8 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: faalis 1.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2013-11-09 17:12+0330\n"
12
- "PO-Revision-Date: 2013-11-09 17:12+0330\n"
11
+ "POT-Creation-Date: 2014-09-05 15:41+0430\n"
12
+ "PO-Revision-Date: 2014-09-05 15:41+0430\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -18,43 +18,22 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- msgid " Sign in "
22
- msgstr ""
23
-
24
- msgid "Activate"
25
- msgstr ""
26
-
27
- msgid "Active"
28
- msgstr ""
29
-
30
21
  msgid "Authentication"
31
22
  msgstr ""
32
23
 
33
- msgid "Can not connect to remote, please try again"
34
- msgstr ""
35
-
36
24
  msgid "Change your password"
37
25
  msgstr ""
38
26
 
39
27
  msgid "Confim Password"
40
28
  msgstr ""
41
29
 
42
- msgid "Current Page"
43
- msgstr ""
44
-
45
- msgid "Dashboard"
46
- msgstr ""
47
-
48
- msgid "Delete"
49
- msgstr ""
50
-
51
30
  msgid "E-mail"
52
31
  msgstr ""
53
32
 
54
- msgid "Edit"
33
+ msgid "Email"
55
34
  msgstr ""
56
35
 
57
- msgid "Email"
36
+ msgid "Faalis"
58
37
  msgstr ""
59
38
 
60
39
  msgid "For changing your password fill and submit the form."
@@ -63,21 +42,9 @@ msgstr ""
63
42
  msgid "For registration you can fill the form ."
64
43
  msgstr ""
65
44
 
66
- msgid "For sign in enter your information !"
67
- msgstr ""
68
-
69
45
  msgid "Forgot your password?"
70
46
  msgstr ""
71
47
 
72
- msgid "Given page does not exists"
73
- msgstr ""
74
-
75
- msgid "Groups"
76
- msgstr ""
77
-
78
- msgid "ID"
79
- msgstr ""
80
-
81
48
  msgid "If you are a registered member you can go to signin page"
82
49
  msgstr ""
83
50
 
@@ -87,34 +54,16 @@ msgstr ""
87
54
  msgid "Item(s)"
88
55
  msgstr ""
89
56
 
90
- msgid "Its simple to register this site"
91
- msgstr ""
92
-
93
57
  msgid "Languages"
94
58
  msgstr ""
95
59
 
96
- msgid "Login using"
97
- msgstr ""
98
-
99
- msgid "Membership"
100
- msgstr ""
101
-
102
- msgid "Name"
103
- msgstr ""
104
-
105
- msgid "New"
106
- msgstr ""
107
-
108
- msgid "New User"
60
+ msgid "Menu"
109
61
  msgstr ""
110
62
 
111
63
  msgid "Password"
112
64
  msgstr ""
113
65
 
114
- msgid "Faalis"
115
- msgstr ""
116
-
117
- msgid "Register"
66
+ msgid "Remember me"
118
67
  msgstr ""
119
68
 
120
69
  msgid "Resend condirmation"
@@ -123,24 +72,9 @@ msgstr ""
123
72
  msgid "Resend confirmation instructions"
124
73
  msgstr ""
125
74
 
126
- msgid "Search"
127
- msgstr ""
128
-
129
- msgid "Select All"
130
- msgstr ""
131
-
132
- msgid "Selected"
133
- msgstr ""
134
-
135
- msgid "Selected record(s) removed successfully."
136
- msgstr ""
137
-
138
75
  msgid "Send me reset password instructions"
139
76
  msgstr ""
140
77
 
141
- msgid "Show"
142
- msgstr ""
143
-
144
78
  msgid "Sign In"
145
79
  msgstr ""
146
80
 
@@ -153,29 +87,17 @@ msgstr ""
153
87
  msgid "Sign in"
154
88
  msgstr ""
155
89
 
156
- msgid "Some slug"
157
- msgstr ""
158
-
159
- msgid "There is not record"
160
- msgstr ""
161
-
162
- msgid "Toggle Select"
90
+ msgid "You can access the member information by registration on this site."
163
91
  msgstr ""
164
92
 
165
- msgid "Total Pages"
93
+ msgid "You don't have access to this page"
166
94
  msgstr ""
167
95
 
168
- msgid "Users"
96
+ msgid "You need to login to use dashboard."
169
97
  msgstr ""
170
98
 
171
- msgid "You can access the member information by registration on this site."
172
- msgstr ""
173
-
174
- msgid "remember me"
99
+ msgid "can %s %s"
175
100
  msgstr ""
176
101
 
177
102
  msgid "some text."
178
103
  msgstr ""
179
-
180
- msgid "you can use members area with registratio"
181
- msgstr ""