faalis 0.26.3 → 1.0.0.alpha0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +35 -6
- data/Rakefile +2 -25
- data/app/assets/javascripts/faalis/angular-manifest.js +8 -2
- data/app/assets/javascripts/faalis/application.js +0 -3
- data/app/assets/javascripts/faalis/dashboard/application.js.erb +0 -5
- data/app/assets/javascripts/faalis/dashboard/functions.js.erb +9 -0
- data/app/assets/javascripts/faalis/dashboard/init.js +1 -1
- data/app/assets/javascripts/faalis/dashboard/modules/auth/group.js +0 -6
- data/app/assets/javascripts/faalis/dashboard/modules/fields/fields.js +1 -1
- data/app/assets/javascripts/faalis/dashboard/modules/fields/image.js +115 -0
- data/app/assets/javascripts/faalis/dashboard/modules/fields/tag.js +76 -0
- data/app/assets/javascripts/faalis/dashboard/variables.js.erb +1 -1
- data/app/assets/locale/templates.pot +282 -0
- data/app/assets/stylesheets/faalis/dashboard/dashboard.css.scss +4 -0
- data/app/assets/stylesheets/faalis/dashboard/ltr/application.css +4 -4
- data/app/assets/stylesheets/faalis/dashboard/rtl/application.css +4 -4
- data/app/assets/stylesheets/faalis/dashboard/rtl/base.css.scss.erb +2 -2
- data/app/controllers/faalis/api/v1/permissions_controller.rb +8 -39
- data/app/controllers/faalis/api/v1/users_controller.rb +7 -7
- data/app/models/ability.rb +4 -6
- data/app/models/faalis/concerns/assignment.rb +2 -2
- data/app/models/faalis/group.rb +18 -4
- data/app/models/faalis/permission.rb +11 -2
- data/app/models/faalis/permissions/auth.rb +3 -2
- data/app/models/faalis/user.rb +27 -73
- data/app/models/faalis/user/auth_definitions.rb +94 -0
- data/app/models/faalis/user/mongoid_fields.rb +76 -0
- data/app/models/faalis/user/permission.rb +21 -0
- data/app/views/angularjs_templates/auth/groups/new.html +0 -20
- data/app/views/angularjs_templates/fields/image/image.html +1 -0
- data/app/views/angularjs_templates/fields/relation/relation.html +3 -1
- data/app/views/angularjs_templates/fields/tag/tag.html +1 -0
- data/app/views/angularjs_templates/nav.html.erb +0 -1
- data/app/views/faalis/api/v1/users/index.json.jbuilder +1 -1
- data/app/views/layouts/faalis/application.html.erb +2 -0
- data/app/views/layouts/faalis/dashboard.html.erb +1 -0
- data/app/views/layouts/faalis/simple.html.erb +1 -0
- data/config/initializers/devise.rb +0 -7
- data/db/migrate/20131013091000_devise_create_faalis_users.rb +3 -2
- data/db/migrate/20140613120923_add_users_groups_table.rb +8 -0
- data/db/migrate/20140617124019_faalis_groups_users.rb +4 -0
- data/db/seeds.rb +39 -11
- data/lib/faalis.rb +5 -4
- data/lib/faalis/concerns.rb +7 -0
- data/lib/faalis/concerns/authorizable.rb +76 -0
- data/lib/faalis/discovery.rb +8 -0
- data/lib/faalis/discovery/permissions.rb +51 -0
- data/lib/faalis/engine.rb +19 -5
- data/lib/faalis/extensions.rb +18 -0
- data/lib/faalis/extensions/base.rb +29 -0
- data/lib/faalis/fake_assets.rb +7 -0
- data/lib/faalis/generators/dashboard_scaffold.rb +23 -5
- data/lib/faalis/omniauth.rb +3 -0
- data/lib/faalis/orm.rb +29 -0
- data/lib/faalis/{active_record.rb → patches/models.rb} +1 -3
- data/lib/faalis/version.rb +1 -1
- data/lib/generators/faalis/install_generator.rb +7 -3
- data/lib/{faalis/plugins.rb → generators/faalis/js/install_i18n_generator.rb} +20 -17
- data/lib/generators/faalis/scaffold_generator.rb +139 -0
- data/lib/generators/faalis/templates/application.js +1 -1
- data/lib/generators/faalis/templates/i18n/Gruntfile.js.erb +30 -0
- data/lib/generators/faalis/templates/i18n/README +13 -0
- data/lib/generators/faalis/templates/i18n/fa.js +3 -0
- data/lib/generators/faalis/templates/js/list_view/README +1 -1
- data/lib/tasks/faalis_tasks.rake +26 -20
- data/lib/tasks/grunt/Gruntfile.js +7 -2
- data/spec/dummy/config/initializers/faalis.rb +40 -0
- metadata +134 -44
- data/app/assets/javascripts/faalis/dashboard/lib/angular-gettext.js +0 -202
- data/app/assets/javascripts/faalis/dashboard/lib/ng-grid.js +0 -3260
- data/app/assets/javascripts/faalis/dashboard/lib/ng-quick-date.js +0 -297
- data/app/assets/javascripts/faalis/dashboard/lib/restangular.js +0 -1066
- data/app/assets/javascripts/faalis/dashboard/lib/select2.js +0 -3255
- data/app/assets/javascripts/faalis/dashboard/lib/ui.select2.js +0 -217
- data/app/assets/stylesheets/faalis/dashboard/ng-grid.css.scss +0 -442
- data/app/assets/stylesheets/faalis/dashboard/ng-quick-date-default-theme.css.scss +0 -20
- data/app/assets/stylesheets/faalis/dashboard/ng-quick-date.css.scss +0 -19
- data/app/assets/stylesheets/faalis/dashboard/select2.css.scss.erb +0 -618
- data/app/controllers/faalis/api/v1/#conversations_controller.rb# +0 -120
- data/app/models/faalis/workflow.rb +0 -4
- data/db/migrate/20140413180202_create_faalis_workflows.rb +0 -9
- data/lib/faalis/permissions.rb +0 -72
- data/lib/faalis/workflows.rb +0 -7
- data/lib/faalis/workflows/base.rb +0 -70
- data/lib/faalis/workflows/discovery.rb +0 -42
- data/lib/generators/faalis/js_scaffold_generator.rb +0 -113
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4c74b374989627938bcfa2c1e0384c0e34cd96b
|
|
4
|
+
data.tar.gz: f571016a6e308819a746c9e3049114711f0a12e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a46e6d62645567c5f6eb946078f4cf4722662b633376dfd3805a1b8ccfee8e04bf4be5bb486530aa1a0ad819031a4f0941d2f3561e34fa327d964b7df1986f8b
|
|
7
|
+
data.tar.gz: 03a7ed19e79ec8aca23ba36b4541eb02a450b0dd7dfb37706cc2ab4c16ec7e7b0826df504582b7d0db8a80fba0931c0acd2c50ff75873abde4b7485cd9ed3b3c
|
data/README.md
CHANGED
|
@@ -20,25 +20,54 @@ end
|
|
|
20
20
|
|
|
21
21
|
## Installation
|
|
22
22
|
|
|
23
|
-
1.
|
|
23
|
+
1. First add `faalis` to your `Gemfile` like
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
# Make sure to add this source to you Gemfile
|
|
27
|
+
source 'http://rails-assets.org'
|
|
28
|
+
|
|
29
|
+
gem "faalis"
|
|
30
|
+
```
|
|
31
|
+
**Note**: Make sure to add `source 'http://rails-assets.org'` to your `Gemfile`.
|
|
32
|
+
|
|
33
|
+
2. Iinstall your project dependencies using `bundle`
|
|
34
|
+
|
|
35
|
+
```ruby
|
|
36
|
+
bundle install
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
3. Add this to your `config/environments/development.rb`
|
|
24
40
|
|
|
25
41
|
```ruby
|
|
26
42
|
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
|
|
27
43
|
```
|
|
28
44
|
|
|
29
|
-
In production,
|
|
45
|
+
In production, `:host` should be set to the actual host of your application.
|
|
30
46
|
|
|
31
|
-
|
|
47
|
+
4. Ensure you have flash messages in `app/views/layouts/application.html.erb`.
|
|
32
48
|
For example (Only if you want to change default layout):
|
|
33
49
|
|
|
34
50
|
```rhtml
|
|
35
51
|
<p class="notice"><%= notice %></p>
|
|
36
52
|
<p class="alert"><%= alert %></p>
|
|
37
53
|
```
|
|
54
|
+
5. Perfrom `rails generate faalis:install_all` to copy necessary files.
|
|
55
|
+
6. Perform `rake db:migrate` and enjoy Faalis
|
|
56
|
+
|
|
57
|
+
## Contributing
|
|
58
|
+
|
|
59
|
+
1. Fork it
|
|
60
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
61
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
62
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
63
|
+
5. Create new Pull Request
|
|
64
|
+
|
|
65
|
+
## Credit
|
|
66
|
+

|
|
38
67
|
|
|
68
|
+
**Faalis** is maintained and funded by Yellowen. Whenever a code snippet is borrowed or inspired by existing code, we try to credit the original developer/designer in our source code. Let us know if you think we have missed to do this.
|
|
39
69
|
|
|
40
|
-
3. Perfrom `rails generate faalis:install_all` to copy necessary files.
|
|
41
|
-
4. Perform `rake db:migrate` and enjoy Faalis
|
|
42
70
|
|
|
71
|
+
# License
|
|
43
72
|
|
|
44
|
-
|
|
73
|
+
**Faalis** is Copyright © 2014 Yellowen. It is free software, and may be redistributed under the terms specified in the LICENSE file.
|
data/Rakefile
CHANGED
|
@@ -4,39 +4,16 @@ rescue LoadError
|
|
|
4
4
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
5
5
|
end
|
|
6
6
|
|
|
7
|
-
require 'rdoc/task'
|
|
8
|
-
|
|
9
|
-
RDoc::Task.new(:rdoc) do |rdoc|
|
|
10
|
-
rdoc.rdoc_dir = 'docs'
|
|
11
|
-
rdoc.title = 'Faalis'
|
|
12
|
-
rdoc.options << '--line-numbers'
|
|
13
|
-
rdoc.options << '--markup=markdown'
|
|
14
|
-
|
|
15
|
-
rdoc.main = "README.rdoc"
|
|
16
|
-
rdoc.rdoc_files.include('README.rdoc')
|
|
17
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
18
|
-
end
|
|
19
|
-
|
|
20
7
|
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
|
|
21
8
|
load 'rails/tasks/engine.rake'
|
|
22
9
|
|
|
23
|
-
|
|
24
|
-
|
|
25
10
|
Bundler::GemHelper.install_tasks
|
|
26
11
|
|
|
27
|
-
#require 'rake/testtask'
|
|
28
|
-
|
|
29
|
-
#Rake::TestTask.new(:test) do |t|
|
|
30
|
-
# t.libs << 'lib'
|
|
31
|
-
# t.libs << 'test'
|
|
32
|
-
# t.pattern = 'test/**/*_test.rb'
|
|
33
|
-
# t.verbose = false
|
|
34
|
-
#end
|
|
35
|
-
#task default: :test
|
|
36
|
-
|
|
37
12
|
require 'rspec/core'
|
|
38
13
|
require 'rspec/core/rake_task'
|
|
39
14
|
|
|
40
15
|
desc "Run all specs in spec directory (excluding plugin specs)"
|
|
41
16
|
RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
|
|
42
17
|
task :default => :spec
|
|
18
|
+
|
|
19
|
+
#load "#{File.dirname(__FILE__)}/lib/tasks/**/*.rake") {|f| load f}
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
//= require faalis/dashboard/variables
|
|
2
2
|
//= require jquery
|
|
3
3
|
//= require jquery_ujs
|
|
4
|
-
//= require foundation
|
|
5
4
|
//= require angular
|
|
6
5
|
//= require angular-animate
|
|
7
6
|
//= require angular-resource
|
|
8
7
|
//= require angular-route
|
|
9
8
|
//= require angular-sanitize
|
|
10
|
-
//= require
|
|
9
|
+
//= require angular-gettext/angular-gettext
|
|
11
10
|
//= require lodash
|
|
11
|
+
//= require restangular/restangular
|
|
12
|
+
//= require ng-grid/ng-grid
|
|
13
|
+
//= require ngQuickDate/ng-quick-date
|
|
14
|
+
//= require select2/select2
|
|
15
|
+
//= require angular-ui-select2/select2
|
|
16
|
+
//= require flow
|
|
17
|
+
//= require ng-flow
|
|
@@ -11,11 +11,6 @@
|
|
|
11
11
|
// about supported directives.
|
|
12
12
|
//
|
|
13
13
|
//= require faalis/angular-manifest
|
|
14
|
-
//= require_tree ./lib
|
|
15
14
|
//= require faalis/dashboard/init
|
|
16
15
|
//= require faalis/dashboard/app
|
|
17
16
|
//= require_tree .
|
|
18
|
-
|
|
19
|
-
$(function(){
|
|
20
|
-
$(document).foundation();
|
|
21
|
-
});
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
//= require faalis/dashboard/objects
|
|
3
3
|
// Get all the modules syncly
|
|
4
4
|
$.ajax({method: 'GET', type: 'json', async: false,
|
|
5
|
-
url: DashboardURL + '
|
|
5
|
+
url: DashboardURL + '.json'})
|
|
6
6
|
.success(function(data, status, headers, config){
|
|
7
7
|
DModules = data.modules;
|
|
8
8
|
|
|
@@ -94,12 +94,6 @@ Group.controller("AddGroupController", ["Restangular", "$scope", "$location", "$
|
|
|
94
94
|
.catch(catch_error);
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
API.all('workflows').getList()
|
|
98
|
-
.then(function(data){
|
|
99
|
-
$scope.workflows = data;
|
|
100
|
-
})
|
|
101
|
-
.catch(catch_error);
|
|
102
|
-
|
|
103
97
|
API.all('permissions').getList()
|
|
104
98
|
.then(function(data){
|
|
105
99
|
$scope.permissions = data;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
angular.module("Fields", ["RelationField", "StringField", "IntegerField", "TextField", "BooleanField", "DatetimeField", "TimeField", "FloatField"]);
|
|
1
|
+
angular.module("Fields", ["RelationField", "StringField", "IntegerField", "TextField", "BooleanField", "DatetimeField", "TimeField", "FloatField", "ImageField", "TagField"]);
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
var Image_ = angular.module("ImageField",[]);
|
|
2
|
+
|
|
3
|
+
/*
|
|
4
|
+
* <image-field></image-field>
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
Image_.directive('imageField',["gettext",function(gettext){
|
|
8
|
+
function link(scope, element, attrs,ngModelController){
|
|
9
|
+
scope.element_id = "id_" + scope.field;
|
|
10
|
+
scope.msg_element_id = "id_" + scope.field + "_msg";
|
|
11
|
+
|
|
12
|
+
function updateModel(event){
|
|
13
|
+
if(event.target && event.target.files){
|
|
14
|
+
var file = event.target.files[0];
|
|
15
|
+
var reader = new FileReader();
|
|
16
|
+
reader.onload = function(e){
|
|
17
|
+
scope.image = e.target.result;
|
|
18
|
+
};
|
|
19
|
+
reader.readAsDataURL(file);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
element.on('change',updateModel)
|
|
24
|
+
|
|
25
|
+
}
|
|
26
|
+
return {
|
|
27
|
+
templateUrl: template("fields/image/image"),
|
|
28
|
+
//getting deprecated
|
|
29
|
+
//replace: true,
|
|
30
|
+
restrict: "E",
|
|
31
|
+
require: '?ngModel', // get a hold of NgModelController
|
|
32
|
+
//transclude: true,
|
|
33
|
+
|
|
34
|
+
link: link
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
}]);
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
/*-------------
|
|
43
|
+
var Image_ = angular.module("DatetimeField", ['flow']);
|
|
44
|
+
|
|
45
|
+
/*
|
|
46
|
+
* <image-field></image-field>
|
|
47
|
+
*/
|
|
48
|
+
/*---------
|
|
49
|
+
Image_.directive('imageField',["gettext", function(gettext){
|
|
50
|
+
function link(scope, element, attrs){
|
|
51
|
+
var ltr = is_ltr();
|
|
52
|
+
scope.element_id = "id_" + scope.field;
|
|
53
|
+
scope.msg_element_id = "id_" + scope.field + "_msg";
|
|
54
|
+
|
|
55
|
+
scope.fileChanged = function(){
|
|
56
|
+
console.log("funckrun");
|
|
57
|
+
//if (scope.internal_model){
|
|
58
|
+
scope.$watch("model", function(newv, oldv, $scope) {
|
|
59
|
+
|
|
60
|
+
f = document.getElementById(scope.element_id).files[0],
|
|
61
|
+
r = new FileReader();
|
|
62
|
+
r.onloadend = function(e){
|
|
63
|
+
console.log("dsfdsffdsfdsfsD");
|
|
64
|
+
scope.data = e.target.result;
|
|
65
|
+
//image: 'data:image/png;base64,'+btoa($scope.image.data),
|
|
66
|
+
};
|
|
67
|
+
r.readAsBinaryString(f);
|
|
68
|
+
}, true);
|
|
69
|
+
};
|
|
70
|
+
// Watch event changes
|
|
71
|
+
|
|
72
|
+
// TODO: maybe we should pass locals to $eval
|
|
73
|
+
/* if (scope.on_change !== undefined) {
|
|
74
|
+
scope.$parent.$eval(scope.on_change);
|
|
75
|
+
}
|
|
76
|
+
scope.debug_ = scope.model;
|
|
77
|
+
if (scope.internal_model){
|
|
78
|
+
f = document.getElementById(scope.element_id).files[0],
|
|
79
|
+
r = new FileReader();
|
|
80
|
+
r.onloadend = function(e){
|
|
81
|
+
var data = e.target.result;
|
|
82
|
+
}
|
|
83
|
+
r.readAsBinaryString(f);
|
|
84
|
+
}
|
|
85
|
+
*/
|
|
86
|
+
/*------------------
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
}
|
|
90
|
+
return {
|
|
91
|
+
templateUrl: template("fields/image/image"),
|
|
92
|
+
replace: true,
|
|
93
|
+
restrict: "E",
|
|
94
|
+
transclude: true,
|
|
95
|
+
scope: {
|
|
96
|
+
|
|
97
|
+
cssClasses: '=cssClass',
|
|
98
|
+
// A call back to pass to field ng-change directive
|
|
99
|
+
on_change: "@onChange",
|
|
100
|
+
// fieldname
|
|
101
|
+
field: "=fieldName",
|
|
102
|
+
required: "=",
|
|
103
|
+
// Actual Angularjs ng-model
|
|
104
|
+
model: '=',
|
|
105
|
+
// image source
|
|
106
|
+
src: '=',
|
|
107
|
+
|
|
108
|
+
data: '='
|
|
109
|
+
|
|
110
|
+
},
|
|
111
|
+
link: link
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
}]);
|
|
115
|
+
*/
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
var Tag = angular.module("TagField", ["ui.select2"]);
|
|
2
|
+
|
|
3
|
+
// <tag-field></tag-field> directive defination
|
|
4
|
+
Tag.directive('tagField', ["$filter", "gettext", "Restangular", "catch_error", function($filter, gettext, API, catch_error) {
|
|
5
|
+
|
|
6
|
+
function link(scope, element, attrs){
|
|
7
|
+
var ltr = is_ltr();
|
|
8
|
+
|
|
9
|
+
scope.element_id = "id_" + scope.fieldName;
|
|
10
|
+
scope.msg_element_id = "id_" + scope.fieldName + "_msg";
|
|
11
|
+
scope.show_help_btn = false;
|
|
12
|
+
scope.show_help_text = true;
|
|
13
|
+
// Decide to see help text or help button
|
|
14
|
+
if (scope.options === undefined) {
|
|
15
|
+
scope.options = {};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if ("help_text" in scope.options) {
|
|
19
|
+
if ("show_help_btn" in scope.options && scope.options.show_help_btn === true) {
|
|
20
|
+
scope.show_help_btn = true;
|
|
21
|
+
scope.show_help_text = false;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
scope.help_btn_clicked = function() {
|
|
26
|
+
if ("show_help_callback" in scope.options) {
|
|
27
|
+
scope.options.show_help_btn();
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
scope.show_help_text = !scope.show_help_text;
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
// Actual object of <tag-field> directive
|
|
35
|
+
return {
|
|
36
|
+
templateUrl: template("fields/tag/tag"),
|
|
37
|
+
replace: true,
|
|
38
|
+
restrict: "E",
|
|
39
|
+
transclude: true,
|
|
40
|
+
scope: {
|
|
41
|
+
// select2 options. Also you can control the buttons and help
|
|
42
|
+
// message of field here. for example you can use `help_text` to
|
|
43
|
+
// show an small help under the control and you can set `show_help_btn`
|
|
44
|
+
//options: '&',
|
|
45
|
+
// to true to show an help button.
|
|
46
|
+
|
|
47
|
+
// A call back to pass to field ng-change directive
|
|
48
|
+
on_change: "@onChange",
|
|
49
|
+
|
|
50
|
+
// Place holder
|
|
51
|
+
placeholder: "@placeholder",
|
|
52
|
+
|
|
53
|
+
// Collection of all tag objects, This variable will
|
|
54
|
+
// fill automatically so you don't have to provide an initial
|
|
55
|
+
// value.
|
|
56
|
+
collection: "=",
|
|
57
|
+
|
|
58
|
+
// Does this field is required
|
|
59
|
+
required: "=",
|
|
60
|
+
|
|
61
|
+
// Field to use as title of options
|
|
62
|
+
titleField: '=',
|
|
63
|
+
|
|
64
|
+
// tag field data
|
|
65
|
+
fieldName: '=',
|
|
66
|
+
options: '=',
|
|
67
|
+
// A variable to watch. in case of change current field
|
|
68
|
+
// collection will update.
|
|
69
|
+
update_on_change: '=updateOnChange',
|
|
70
|
+
|
|
71
|
+
// Actual Angularjs ng-model
|
|
72
|
+
model: '='
|
|
73
|
+
},
|
|
74
|
+
link: link
|
|
75
|
+
};
|
|
76
|
+
}]);
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
msgid ""
|
|
2
|
+
msgstr ""
|
|
3
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
4
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
5
|
+
|
|
6
|
+
#: app/views/angularjs_templates/auth/groups/details.html
|
|
7
|
+
msgid "Group Name :"
|
|
8
|
+
msgstr ""
|
|
9
|
+
|
|
10
|
+
#: app/views/angularjs_templates/auth/groups/details.html
|
|
11
|
+
msgid "Permissions :"
|
|
12
|
+
msgstr ""
|
|
13
|
+
|
|
14
|
+
#: app/views/angularjs_templates/auth/groups/index.html
|
|
15
|
+
#: app/views/angularjs_templates/auth/index.html
|
|
16
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/auth.js
|
|
17
|
+
msgid "Groups"
|
|
18
|
+
msgstr ""
|
|
19
|
+
|
|
20
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
21
|
+
msgid "New Group"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
25
|
+
msgid "Edit Group"
|
|
26
|
+
msgstr ""
|
|
27
|
+
|
|
28
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
29
|
+
msgid "Name :"
|
|
30
|
+
msgstr ""
|
|
31
|
+
|
|
32
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
33
|
+
msgid "Workflows"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
37
|
+
msgid "Choose any workflow which you want to allow user to have access to."
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
41
|
+
msgid "Advance Permissions"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
45
|
+
msgid "Permissions"
|
|
46
|
+
msgstr ""
|
|
47
|
+
|
|
48
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
49
|
+
#: app/views/angularjs_templates/auth/profile/edit.html
|
|
50
|
+
#: app/views/angularjs_templates/auth/users/new.html
|
|
51
|
+
msgid "Save"
|
|
52
|
+
msgstr ""
|
|
53
|
+
|
|
54
|
+
#: app/views/angularjs_templates/auth/groups/new.html
|
|
55
|
+
msgid "Cansel"
|
|
56
|
+
msgstr ""
|
|
57
|
+
|
|
58
|
+
#: app/views/angularjs_templates/auth/index.html
|
|
59
|
+
#: app/views/angularjs_templates/auth/users/index.html
|
|
60
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/auth.js
|
|
61
|
+
msgid "Users"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#: app/views/angularjs_templates/auth/profile/edit.html
|
|
65
|
+
msgid "Edit Profile"
|
|
66
|
+
msgstr ""
|
|
67
|
+
|
|
68
|
+
#: app/views/angularjs_templates/auth/profile/edit.html
|
|
69
|
+
#: app/views/angularjs_templates/auth/users/details.html
|
|
70
|
+
#: app/views/angularjs_templates/auth/users/new.html
|
|
71
|
+
msgid "First Name :"
|
|
72
|
+
msgstr ""
|
|
73
|
+
|
|
74
|
+
#: app/views/angularjs_templates/auth/profile/edit.html
|
|
75
|
+
#: app/views/angularjs_templates/auth/users/details.html
|
|
76
|
+
#: app/views/angularjs_templates/auth/users/new.html
|
|
77
|
+
msgid "Last Name :"
|
|
78
|
+
msgstr ""
|
|
79
|
+
|
|
80
|
+
#: app/views/angularjs_templates/auth/profile/edit.html
|
|
81
|
+
#: app/views/angularjs_templates/auth/users/new.html
|
|
82
|
+
msgid "Password :"
|
|
83
|
+
msgstr ""
|
|
84
|
+
|
|
85
|
+
#: app/views/angularjs_templates/auth/profile/edit.html
|
|
86
|
+
msgid "Confirm Password :"
|
|
87
|
+
msgstr ""
|
|
88
|
+
|
|
89
|
+
#: app/views/angularjs_templates/auth/profile/edit.html
|
|
90
|
+
#: app/views/angularjs_templates/auth/users/details.html
|
|
91
|
+
#: app/views/angularjs_templates/auth/users/new.html
|
|
92
|
+
msgid "E-mail :"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
#: app/views/angularjs_templates/auth/profile/edit.html
|
|
96
|
+
#: app/views/angularjs_templates/auth/users/new.html
|
|
97
|
+
#: app/views/angularjs_templates/conversations/new.html
|
|
98
|
+
msgid "Cancel"
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
101
|
+
#: app/views/angularjs_templates/auth/users/details.html
|
|
102
|
+
#: app/views/angularjs_templates/auth/users/new.html
|
|
103
|
+
msgid "Group :"
|
|
104
|
+
msgstr ""
|
|
105
|
+
|
|
106
|
+
#: app/views/angularjs_templates/auth/users/new.html
|
|
107
|
+
#: app/views/angularjs_templates/conversations/new.html
|
|
108
|
+
msgid "New User"
|
|
109
|
+
msgstr ""
|
|
110
|
+
|
|
111
|
+
#: app/views/angularjs_templates/conversations/details.html
|
|
112
|
+
#: app/views/angularjs_templates/conversations/show_details.html
|
|
113
|
+
msgid "Sent at :"
|
|
114
|
+
msgstr ""
|
|
115
|
+
|
|
116
|
+
#: app/views/angularjs_templates/conversations/details.html
|
|
117
|
+
#: app/views/angularjs_templates/conversations/show_details.html
|
|
118
|
+
msgid "Last Update :"
|
|
119
|
+
msgstr ""
|
|
120
|
+
|
|
121
|
+
#: app/views/angularjs_templates/conversations/index.html
|
|
122
|
+
#: app/views/angularjs_templates/conversations/show.html
|
|
123
|
+
msgid "Conversations"
|
|
124
|
+
msgstr ""
|
|
125
|
+
|
|
126
|
+
#: app/views/angularjs_templates/conversations/new.html
|
|
127
|
+
msgid "Recipient(s):"
|
|
128
|
+
msgstr ""
|
|
129
|
+
|
|
130
|
+
#: app/views/angularjs_templates/conversations/new.html
|
|
131
|
+
msgid "subject :"
|
|
132
|
+
msgstr ""
|
|
133
|
+
|
|
134
|
+
#: app/views/angularjs_templates/conversations/new.html
|
|
135
|
+
msgid "Message :"
|
|
136
|
+
msgstr ""
|
|
137
|
+
|
|
138
|
+
#: app/views/angularjs_templates/conversations/new.html
|
|
139
|
+
msgid "Send"
|
|
140
|
+
msgstr ""
|
|
141
|
+
|
|
142
|
+
#: app/views/angularjs_templates/fields/control-combo/control-list.html
|
|
143
|
+
msgid "Facility Name"
|
|
144
|
+
msgstr ""
|
|
145
|
+
|
|
146
|
+
#: app/views/angularjs_templates/fields/control-combo/control-list.html
|
|
147
|
+
msgid "Number"
|
|
148
|
+
msgstr ""
|
|
149
|
+
|
|
150
|
+
#: app/views/angularjs_templates/fields/control-combo/control-list.html
|
|
151
|
+
msgid "Price?"
|
|
152
|
+
msgstr ""
|
|
153
|
+
|
|
154
|
+
#: app/views/angularjs_templates/fields/control-combo/control-list.html
|
|
155
|
+
msgid "Note"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#: app/views/angularjs_templates/fields/datetime/datetime.html
|
|
159
|
+
msgid "Click to pick a date"
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: app/views/angularjs_templates/fields/string/string.html
|
|
163
|
+
msgid "{{ item.title }}"
|
|
164
|
+
msgstr ""
|
|
165
|
+
|
|
166
|
+
#: app/views/angularjs_templates/filter/index.html
|
|
167
|
+
msgid "Filter"
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
170
|
+
#: app/views/angularjs_templates/filter/index.html
|
|
171
|
+
#: app/views/angularjs_templates/list-view/index.html
|
|
172
|
+
msgid "Search"
|
|
173
|
+
msgstr ""
|
|
174
|
+
|
|
175
|
+
#: app/views/angularjs_templates/list-view/index.html
|
|
176
|
+
msgid "There is no data!"
|
|
177
|
+
msgstr ""
|
|
178
|
+
|
|
179
|
+
#: app/views/angularjs_templates/list-view/index.html
|
|
180
|
+
msgid "Toggle Select"
|
|
181
|
+
msgstr ""
|
|
182
|
+
|
|
183
|
+
#: app/views/angularjs_templates/list-view/index.html
|
|
184
|
+
msgid "Current Page"
|
|
185
|
+
msgstr ""
|
|
186
|
+
|
|
187
|
+
#: app/views/angularjs_templates/list-view/index.html
|
|
188
|
+
msgid "Total Pages"
|
|
189
|
+
msgstr ""
|
|
190
|
+
|
|
191
|
+
#: app/views/angularjs_templates/list-view/index.html
|
|
192
|
+
msgid "Item(s)"
|
|
193
|
+
msgstr ""
|
|
194
|
+
|
|
195
|
+
#: app/views/angularjs_templates/list-view/index.html
|
|
196
|
+
msgid "Selected"
|
|
197
|
+
msgstr ""
|
|
198
|
+
|
|
199
|
+
#: app/views/angularjs_templates/logs/index.html
|
|
200
|
+
msgid "Logs"
|
|
201
|
+
msgstr ""
|
|
202
|
+
|
|
203
|
+
#: app/views/angularjs_templates/modules.html
|
|
204
|
+
msgid "Dashboard"
|
|
205
|
+
msgstr ""
|
|
206
|
+
|
|
207
|
+
#: app/views/angularjs_templates/modules.html
|
|
208
|
+
msgid "{{ module.title }}"
|
|
209
|
+
msgstr ""
|
|
210
|
+
|
|
211
|
+
#: app/views/angularjs_templates/modules.html
|
|
212
|
+
msgid "<%= faalis::engine.site_title=\"\" %=\"\"></%=>"
|
|
213
|
+
msgstr ""
|
|
214
|
+
|
|
215
|
+
#: app/views/angularjs_templates/modules.html
|
|
216
|
+
msgid "Some_Slug"
|
|
217
|
+
msgstr ""
|
|
218
|
+
|
|
219
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/group.js
|
|
220
|
+
msgid "new"
|
|
221
|
+
msgstr ""
|
|
222
|
+
|
|
223
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/group.js
|
|
224
|
+
msgid "Group updated successfully."
|
|
225
|
+
msgstr ""
|
|
226
|
+
|
|
227
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/group.js
|
|
228
|
+
msgid "Group created successfully."
|
|
229
|
+
msgstr ""
|
|
230
|
+
|
|
231
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/profile.js
|
|
232
|
+
msgid "Profile updated successfully."
|
|
233
|
+
msgstr ""
|
|
234
|
+
|
|
235
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/user.js
|
|
236
|
+
#: app/assets/javascripts/faalis/dashboard/modules/conversations.js
|
|
237
|
+
msgid "New"
|
|
238
|
+
msgstr ""
|
|
239
|
+
|
|
240
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/user.js
|
|
241
|
+
msgid "User updated successfully."
|
|
242
|
+
msgstr ""
|
|
243
|
+
|
|
244
|
+
#: app/assets/javascripts/faalis/dashboard/modules/auth/user.js
|
|
245
|
+
msgid "User created Successfully"
|
|
246
|
+
msgstr ""
|
|
247
|
+
|
|
248
|
+
#: app/assets/javascripts/faalis/dashboard/modules/conversations.js
|
|
249
|
+
msgid "Inbox"
|
|
250
|
+
msgstr ""
|
|
251
|
+
|
|
252
|
+
#: app/assets/javascripts/faalis/dashboard/modules/conversations.js
|
|
253
|
+
msgid "Sent box"
|
|
254
|
+
msgstr ""
|
|
255
|
+
|
|
256
|
+
#: app/assets/javascripts/faalis/dashboard/modules/conversations.js
|
|
257
|
+
msgid "Trash box"
|
|
258
|
+
msgstr ""
|
|
259
|
+
|
|
260
|
+
#: app/assets/javascripts/faalis/dashboard/modules/conversations.js
|
|
261
|
+
msgid "Message sent successfully."
|
|
262
|
+
msgstr ""
|
|
263
|
+
|
|
264
|
+
#: app/assets/javascripts/faalis/dashboard/modules/conversations.js
|
|
265
|
+
msgid "Message sent Successfully"
|
|
266
|
+
msgstr ""
|
|
267
|
+
|
|
268
|
+
#: app/assets/javascripts/faalis/dashboard/modules/errors.js
|
|
269
|
+
msgid "Validation error. Fixup errors first."
|
|
270
|
+
msgstr ""
|
|
271
|
+
|
|
272
|
+
#: app/assets/javascripts/faalis/dashboard/modules/errors.js
|
|
273
|
+
msgid "Unkown error: please try again or contact to administrator."
|
|
274
|
+
msgstr ""
|
|
275
|
+
|
|
276
|
+
#: app/assets/javascripts/faalis/dashboard/modules/list-view.js
|
|
277
|
+
msgid "Are sure you want to delete"
|
|
278
|
+
msgstr ""
|
|
279
|
+
|
|
280
|
+
#: app/assets/javascripts/faalis/dashboard/modules/list-view.js
|
|
281
|
+
msgid "item(s)?"
|
|
282
|
+
msgstr ""
|