helpdesk 0.0.2 → 0.0.3

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.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/helpdesk/admin/tickets.js +1 -13
  3. data/app/assets/javascripts/helpdesk/application.js +0 -1
  4. data/app/assets/stylesheets/helpdesk/admin.css +0 -2
  5. data/app/assets/stylesheets/helpdesk/imports.css.scss +34 -0
  6. data/app/controllers/helpdesk/admin/base_controller.rb +2 -2
  7. data/app/controllers/helpdesk/admin/faqs_controller.rb +2 -7
  8. data/app/controllers/helpdesk/admin/subscribers_controller.rb +2 -8
  9. data/app/controllers/helpdesk/admin/ticket_types_controller.rb +3 -9
  10. data/app/controllers/helpdesk/admin/tickets_controller.rb +9 -21
  11. data/app/controllers/helpdesk/application_controller.rb +9 -4
  12. data/app/controllers/helpdesk/dashboard_controller.rb +2 -2
  13. data/app/controllers/helpdesk/faqs_controller.rb +80 -2
  14. data/app/controllers/helpdesk/subscribers_controller.rb +41 -18
  15. data/app/controllers/helpdesk/tickets_controller.rb +15 -20
  16. data/app/helpers/helpdesk/admin/tickets_helper.rb +0 -9
  17. data/app/helpers/helpdesk/helpdesk_helper.rb +6 -30
  18. data/app/helpers/helpdesk/tickets_helper.rb +0 -3
  19. data/app/mailers/helpdesk/comment_by_requester_confirmation +38 -0
  20. data/app/mailers/helpdesk/notifications_mailer.rb +1 -2
  21. data/app/models/helpdesk/comment.rb +5 -11
  22. data/app/models/helpdesk/faq.rb +1 -1
  23. data/app/models/helpdesk/ticket.rb +24 -27
  24. data/app/models/helpdesk/ticket_type.rb +4 -4
  25. data/app/views/helpdesk/admin/faqs/_form.html.haml +2 -2
  26. data/app/views/helpdesk/admin/faqs/edit.html.haml +9 -6
  27. data/app/views/helpdesk/admin/faqs/index.html.haml +2 -2
  28. data/app/views/helpdesk/admin/faqs/new.html.haml +1 -2
  29. data/app/views/helpdesk/admin/faqs/show.html.haml +1 -1
  30. data/app/views/helpdesk/admin/subscribers/edit.html.haml +1 -2
  31. data/app/views/helpdesk/admin/subscribers/index.html.haml +2 -3
  32. data/app/views/helpdesk/admin/subscribers/new.html.haml +1 -2
  33. data/app/views/helpdesk/admin/ticket_types/edit.html.haml +1 -2
  34. data/app/views/helpdesk/admin/ticket_types/index.html.haml +1 -1
  35. data/app/views/helpdesk/admin/ticket_types/new.html.haml +1 -2
  36. data/app/views/helpdesk/admin/tickets/_form.html.haml +9 -9
  37. data/app/views/helpdesk/admin/tickets/_ticket.html.haml +16 -15
  38. data/app/views/helpdesk/admin/tickets/edit.html.haml +5 -5
  39. data/app/views/helpdesk/admin/tickets/index.html.haml +5 -7
  40. data/app/views/helpdesk/admin/tickets/list.html.haml +2 -3
  41. data/app/views/helpdesk/admin/tickets/new.html.haml +2 -2
  42. data/app/views/helpdesk/admin/tickets/show.html.haml +9 -9
  43. data/app/views/helpdesk/faqs/_form.html.erb +33 -0
  44. data/app/views/helpdesk/faqs/edit.html.erb +6 -0
  45. data/app/views/helpdesk/faqs/index.html.erb +29 -0
  46. data/app/views/helpdesk/faqs/new.html.erb +5 -0
  47. data/app/views/helpdesk/faqs/show.html.erb +25 -0
  48. data/app/views/helpdesk/notifications_mailer/comment_by_helpdesk_confirmation.pl.html.haml +32 -0
  49. data/app/views/helpdesk/notifications_mailer/comment_by_helpdesk_notification.pl.html.haml +28 -0
  50. data/app/views/helpdesk/notifications_mailer/comment_by_requester_confirmation.pl.html.haml +32 -0
  51. data/app/views/helpdesk/notifications_mailer/comment_by_requester_notification.pl.html.haml +42 -0
  52. data/app/views/helpdesk/notifications_mailer/ticket_created_confirmation.pl.html.haml +34 -0
  53. data/app/views/helpdesk/notifications_mailer/ticket_created_notification.pl.html.haml +42 -0
  54. data/app/views/helpdesk/tickets/_form.html.haml +11 -11
  55. data/app/views/helpdesk/tickets/_ticket.html.haml +10 -10
  56. data/app/views/helpdesk/tickets/index.html.haml +2 -3
  57. data/app/views/helpdesk/tickets/new.html.haml +2 -2
  58. data/app/views/helpdesk/tickets/show.html.haml +12 -16
  59. data/app/views/layouts/helpdesk/_topmenu.html.haml +21 -27
  60. data/app/views/layouts/helpdesk/_topuser.html.haml +9 -32
  61. data/app/views/layouts/helpdesk/admin.html.haml +6 -14
  62. data/app/views/layouts/helpdesk/user.html.haml +6 -14
  63. data/config/initializers/simple_form.rb +144 -85
  64. data/config/locales/helpdesk.en.yml +3 -107
  65. data/config/locales/helpdesk.pl.yml +7 -46
  66. data/config/routes.rb +5 -6
  67. data/db/migrate/20130521105605_create_helpdesk_ticket_types.rb +1 -21
  68. data/db/migrate/20130521132216_add_tr_class_to_ticket_type.rb +5 -0
  69. data/lib/generators/helpdesk/install_generator.rb +0 -11
  70. data/lib/generators/helpdesk/templates/README +9 -17
  71. data/lib/generators/helpdesk/templates/helpdesk.rb +6 -9
  72. data/lib/helpdesk.rb +4 -4
  73. data/lib/helpdesk/engine.rb +0 -8
  74. data/lib/helpdesk/version.rb +1 -1
  75. metadata +28 -137
  76. data/app/assets/stylesheets/helpdesk/imports.css.sass +0 -0
  77. data/app/views/helpdesk/faqs/index.html.haml +0 -20
  78. data/app/views/helpdesk/notifications_mailer/comment_by_helpdesk_confirmation.html.haml +0 -15
  79. data/app/views/helpdesk/notifications_mailer/comment_by_helpdesk_notification.html.haml +0 -19
  80. data/app/views/helpdesk/notifications_mailer/comment_by_requester_confirmation.html.haml +0 -16
  81. data/app/views/helpdesk/notifications_mailer/comment_by_requester_notification.html.haml +0 -27
  82. data/app/views/helpdesk/notifications_mailer/ticket_created_confirmation.html.haml +0 -16
  83. data/app/views/helpdesk/notifications_mailer/ticket_created_notification.html.haml +0 -21
  84. data/app/views/layouts/mailer_layout.html.haml +0 -20
  85. data/config/initializers/globalize.rb +0 -4
@@ -13,21 +13,13 @@
13
13
  = render 'layouts/helpdesk/topuser'
14
14
  .content
15
15
  .row
16
- .col.col-md-3#site_leftmenu
16
+ .span3
17
17
  =yield :left
18
- .col.col-md-9#site_leftmenu
18
+ .span9
19
19
  .flash
20
20
  - flash.each do |type, message|
21
21
  %div{:class => "alert alert-#{type}", "data-alert"=>"alert"}
22
- =link_to "x",'#', :class=>'close', :'data-dismiss'=>"alert"
23
- %p= message
24
- - if content_for?(:title)
25
- .panel.panel-default
26
- .panel-heading
27
- %h3.panel-title
28
- = content_for?(:title) ? content_for(:title) : ''
29
- .panel-body
30
- = yield
31
- - else
32
- = yield
33
- =yield :scripts
22
+ =link_to "x",'#', :class=>'close', :'data-dismiss'=>"alert"
23
+ %p= message
24
+ =yield
25
+ =yield :scripts
@@ -1,117 +1,176 @@
1
- inputs = %w[
2
- CollectionSelectInput
3
- DateTimeInput
4
- FileInput
5
- GroupedCollectionSelectInput
6
- NumericInput
7
- PasswordInput
8
- RangeInput
9
- StringInput
10
- TextInput
11
- ]
12
-
13
-
14
- # Instead of creating top-level custom input classes like TextInput, we wrap it into a module and override
15
- # mapping in SimpleForm::FormBuilder directly
16
- #
17
- unless Module.const_defined?(:SimpleFormBootstrapInputs)
18
- SimpleFormBootstrapInputs = Module.new
19
- inputs.each do |input_type|
20
- superclass = "SimpleForm::Inputs::#{input_type}".constantize
21
-
22
- new_class = SimpleFormBootstrapInputs.const_set(input_type, Class.new(superclass) do
23
- def input_html_classes
24
- super.push('form-control')
25
- end
26
- end)
27
-
28
- # Now override existing usages of superclass with new_class
29
- SimpleForm::FormBuilder.mappings.each do |(type, target_class)|
30
- if target_class == superclass
31
- SimpleForm::FormBuilder.map_type(type, to: new_class)
32
- end
33
- end
34
- end
35
- end
36
- # inputs.each do |input_type|
37
- # superclass = "SimpleForm::Inputs::#{input_type}".constantize
38
-
39
- # new_class = Class.new(superclass) do
40
- # def input_html_classes
41
- # super.push('form-control')
42
- # end
43
- # end
44
-
45
- # Object.const_set(input_type, new_class)
46
- # end
47
-
48
1
  # Use this setup block to configure all options available in SimpleForm.
49
2
  SimpleForm.setup do |config|
3
+ # Wrappers are used by the form builder to generate a
4
+ # complete input. You can remove any component from the
5
+ # wrapper, change the order or even add your own to the
6
+ # stack. The options given below are used to wrap the
7
+ # whole input.
8
+ config.wrappers :default, :class => :input,
9
+ :hint_class => :field_with_hint, :error_class => :field_with_errors do |b|
10
+ ## Extensions enabled by default
11
+ # Any of these extensions can be disabled for a
12
+ # given input by passing: `f.input EXTENSION_NAME => false`.
13
+ # You can make any of these extensions optional by
14
+ # renaming `b.use` to `b.optional`.
15
+
16
+ # Determines whether to use HTML5 (:email, :url, ...)
17
+ # and required attributes
18
+ b.use :html5
50
19
 
51
- config.browser_validations = true
20
+ # Calculates placeholders automatically from I18n
21
+ # You can also pass a string as f.input :placeholder => "Placeholder"
22
+ b.use :placeholder
52
23
 
53
- config.boolean_style = :nested
24
+ ## Optional extensions
25
+ # They are disabled unless you pass `f.input EXTENSION_NAME => :lookup`
26
+ # to the input. If so, they will retrieve the values from the model
27
+ # if any exists. If you want to enable the lookup for any of those
28
+ # extensions by default, you can change `b.optional` to `b.use`.
54
29
 
55
- config.wrappers :bootstrap3, tag: 'div', class: 'form-group', error_class: 'has-error',
56
- defaults: { input_html: { class: 'default_class' } } do |b|
57
-
58
- b.use :html5
59
- b.use :min_max
60
- b.use :maxlength
61
- b.use :placeholder
30
+ # Calculates maxlength from length validations for string inputs
31
+ b.optional :maxlength
62
32
 
33
+ # Calculates pattern from format validations for string inputs
63
34
  b.optional :pattern
35
+
36
+ # Calculates min and max from length validations for numeric inputs
37
+ b.optional :min_max
38
+
39
+ # Calculates readonly automatically from readonly attributes
64
40
  b.optional :readonly
65
41
 
42
+ ## Inputs
66
43
  b.use :label_input
67
- b.use :hint, wrap_with: { tag: 'span', class: 'help-block' }
68
- b.use :error, wrap_with: { tag: 'span', class: 'help-block has-error' }
44
+ b.use :hint, :wrap_with => { :tag => :span, :class => :hint }
45
+ b.use :error, :wrap_with => { :tag => :span, :class => :error }
69
46
  end
70
47
 
71
- config.wrappers :prepend, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
48
+ config.wrappers :bootstrap, :tag => 'div', :class => 'control-group', :error_class => 'error' do |b|
72
49
  b.use :html5
73
50
  b.use :placeholder
74
- b.wrapper tag: 'div', class: 'controls' do |input|
75
- input.wrapper tag: 'div', class: 'input-group' do |prepend|
76
- prepend.use :label , wrap_with: {class: "input-group-addon"} ###Please note setting class here fro the label does not currently work (let me know if you know a workaround as this is the final hurdle)
77
- prepend.use :input
78
- end
79
- input.use :hint, wrap_with: { tag: 'span', class: 'help-block' }
80
- input.use :error, wrap_with: { tag: 'span', class: 'help-block has-error' }
51
+ b.use :label
52
+ b.wrapper :tag => 'div', :class => 'controls' do |ba|
53
+ ba.use :input
54
+ ba.use :error, :wrap_with => { :tag => 'span', :class => 'help-inline' }
55
+ ba.use :hint, :wrap_with => { :tag => 'p', :class => 'help-block' }
81
56
  end
82
57
  end
83
58
 
84
- config.wrappers :append, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
59
+ config.wrappers :prepend, :tag => 'div', :class => "control-group", :error_class => 'error' do |b|
85
60
  b.use :html5
86
61
  b.use :placeholder
87
- b.wrapper tag: 'div', class: 'controls' do |input|
88
- input.wrapper tag: 'div', class: 'input-group' do |prepend|
62
+ b.use :label
63
+ b.wrapper :tag => 'div', :class => 'controls' do |input|
64
+ input.wrapper :tag => 'div', :class => 'input-prepend' do |prepend|
89
65
  prepend.use :input
90
- prepend.use :label , wrap_with: {class: "input-group-addon"} ###Please note setting class here fro the label does not currently work (let me know if you know a workaround as this is the final hurdle)
91
66
  end
92
- input.use :hint, wrap_with: { tag: 'span', class: 'help-block' }
93
- input.use :error, wrap_with: { tag: 'span', class: 'help-block has-error' }
67
+ input.use :hint, :wrap_with => { :tag => 'span', :class => 'help-block' }
68
+ input.use :error, :wrap_with => { :tag => 'span', :class => 'help-inline' }
94
69
  end
95
70
  end
96
71
 
97
- config.wrappers :checkbox, tag: :div, class: "checkbox", error_class: "has-error" do |b|
98
-
99
- # Form extensions
72
+ config.wrappers :append, :tag => 'div', :class => "control-group", :error_class => 'error' do |b|
100
73
  b.use :html5
101
-
102
- # Form components
103
- b.wrapper tag: :label do |ba|
104
- ba.use :input
105
- ba.use :label_text
74
+ b.use :placeholder
75
+ b.use :label
76
+ b.wrapper :tag => 'div', :class => 'controls' do |input|
77
+ input.wrapper :tag => 'div', :class => 'input-append' do |append|
78
+ append.use :input
79
+ end
80
+ input.use :hint, :wrap_with => { :tag => 'span', :class => 'help-block' }
81
+ input.use :error, :wrap_with => { :tag => 'span', :class => 'help-inline' }
106
82
  end
107
-
108
- b.use :hint, wrap_with: { tag: :p, class: "help-block" }
109
- b.use :error, wrap_with: { tag: :span, class: "help-block text-danger" }
110
83
  end
111
84
 
112
85
  # Wrappers for forms and inputs using the Twitter Bootstrap toolkit.
113
- # Check the Bootstrap docs (http://getbootstrap.com/)
86
+ # Check the Bootstrap docs (http://twitter.github.com/bootstrap)
114
87
  # to learn about the different styles for forms and inputs,
115
88
  # buttons and other elements.
116
- config.default_wrapper = :bootstrap3
89
+ config.default_wrapper = :bootstrap
90
+
91
+ # Define the way to render check boxes / radio buttons with labels.
92
+ # Defaults to :nested for bootstrap config.
93
+ # :inline => input + label
94
+ # :nested => label > input
95
+ config.boolean_style = :nested
96
+
97
+ # Default class for buttons
98
+ config.button_class = 'btn'
99
+
100
+ # Method used to tidy up errors.
101
+ # config.error_method = :first
102
+
103
+ # Default tag used for error notification helper.
104
+ config.error_notification_tag = :div
105
+
106
+ # CSS class to add for error notification helper.
107
+ config.error_notification_class = 'alert alert-error'
108
+
109
+ # ID to add for error notification helper.
110
+ # config.error_notification_id = nil
111
+
112
+ # Series of attempts to detect a default label method for collection.
113
+ # config.collection_label_methods = [ :to_label, :name, :title, :to_s ]
114
+
115
+ # Series of attempts to detect a default value method for collection.
116
+ # config.collection_value_methods = [ :id, :to_s ]
117
+
118
+ # You can wrap a collection of radio/check boxes in a pre-defined tag, defaulting to none.
119
+ # config.collection_wrapper_tag = nil
120
+
121
+ # You can define the class to use on all collection wrappers. Defaulting to none.
122
+ # config.collection_wrapper_class = nil
123
+
124
+ # You can wrap each item in a collection of radio/check boxes with a tag,
125
+ # defaulting to :span. Please note that when using :boolean_style = :nested,
126
+ # SimpleForm will force this option to be a label.
127
+ # config.item_wrapper_tag = :span
128
+
129
+ # You can define a class to use in all item wrappers. Defaulting to none.
130
+ # config.item_wrapper_class = nil
131
+
132
+ # How the label text should be generated altogether with the required text.
133
+ # config.label_text = lambda { |label, required| "#{required} #{label}" }
134
+
135
+ # You can define the class to use on all labels. Default is nil.
136
+ config.label_class = 'control-label'
137
+
138
+ # You can define the class to use on all forms. Default is simple_form.
139
+ # config.form_class = :simple_form
140
+
141
+ # You can define which elements should obtain additional classes
142
+ # config.generate_additional_classes_for = [:wrapper, :label, :input]
143
+
144
+ # Whether attributes are required by default (or not). Default is true.
145
+ # config.required_by_default = true
146
+
147
+ # Tell browsers whether to use default HTML5 validations (novalidate option).
148
+ # Default is enabled.
149
+ config.browser_validations = false
150
+
151
+ # Collection of methods to detect if a file type was given.
152
+ # config.file_methods = [ :mounted_as, :file?, :public_filename ]
153
+
154
+ # Custom mappings for input types. This should be a hash containing a regexp
155
+ # to match as key, and the input type that will be used when the field name
156
+ # matches the regexp as value.
157
+ # config.input_mappings = { /count/ => :integer }
158
+
159
+ # Default priority for time_zone inputs.
160
+ # config.time_zone_priority = nil
161
+
162
+ # Default priority for country inputs.
163
+ # config.country_priority = nil
164
+
165
+ # Default size for text inputs.
166
+ # config.default_input_size = 50
167
+
168
+ # When false, do not use translations for labels.
169
+ # config.translate_labels = true
170
+
171
+ # Automatically discover new inputs in Rails' autoload path.
172
+ # config.inputs_discovery = true
173
+
174
+ # Cache SimpleForm inputs discovery
175
+ # config.cache_discovery = !Rails.env.development?
117
176
  end
@@ -1,111 +1,7 @@
1
1
  en:
2
2
 
3
3
  helpdesk:
4
- lang: Language
5
- Show: Show
6
- edit: Edit
7
- Destroy: Delete
8
- name: Helpdesk
9
- new_ticket: New
10
- tickets:
11
- new: New Issue
12
- my: My Issue
13
- unassigned: Unassigned
14
- closed: Closed Issues
15
- all: All issues
16
- title: Issues
17
- active: Active Issues
18
- assignee_to: Assigned to
19
- assign_me: I take it
20
- not_assigned: Not assigned
21
- is_now_assigned: "Issue %{subject} has been assigned to you"
22
- visible_to_autor: Visible to the author - send an email
23
- you_have_no_tickets: "No issues "
24
- ticket_closed: Issues closed
25
- subject: Subject of
26
- description: Content
27
- cancel: cancel
28
- send: Send
29
- ticket: Issue
30
- faq: FAQ
31
- comments:
32
- title: Comments
33
- note: Memo
34
- send: Sent
35
- received: Received
36
- note: note
37
- author: Re. author
38
- helpdesk: Re. BOK
39
- ticket_types:
40
- title: Types of issues
41
- new: A new type of issues
42
- all: All kinds of issues
43
- active: Active types of issues
44
- inactive: Inactive types of issues
4
+ name: Helpdesk Foo
5
+ new_ticket: New Ticket
6
+ my_tickets: My Tickets
45
7
 
46
- dashboard: Dashboard
47
-
48
- subscribers:
49
- title: Subscribers
50
- confirmed: Confirmed subskrybenci
51
- unconfirmed: Unconfirmed
52
- all: All Subscribers
53
- new: Add Subscriber
54
-
55
- faqs:
56
- title: FAQ
57
- title_s: Frequently Asked Questions
58
- active: Active Questions
59
- inactive: Inactive questions
60
- all: All the questions
61
- new: New Question
62
- by: by
63
- faq:
64
- active: active
65
- inactive: inactive
66
-
67
- mailer:
68
- comment_by_helpdesk_confirmation:
69
- title: "Response to the issue was sent"
70
- re_ticket: "New comment for Issue:"
71
- response_content: "Content of the comment:"
72
- comment_by_helpdesk_notification:
73
- title: "%{user}, new reply received for issue:"
74
- comment_content: "Content of the comment:"
75
- comment_by_requester_notification:
76
- title: "New reply received for issue:"
77
- comment_content: "Content of the comment:"
78
- comment_by_requester_confirmation:
79
- title: "%{user}, thank you for submitting a comment to the Issue"
80
- subject: "New comment for Issie - %{subject}"
81
- comment_content: "Content of the comment:"
82
- ticket_created_confirmation:
83
- title: "%{user}, thank you for submitting"
84
- subject: "Your issue subject is:"
85
- ticket_content: "Content of the issue:"
86
- info_time: "We appreciate your time, so we will try to respond as quickly as possible."
87
- ticket_created_notification:
88
- title: "New Issue was created"
89
- requester_info: "Author"
90
- ticket_content: "The content of the issue:"
91
- ticket_url_title: "At this address you can track the issue:"
92
- footer_info: "This message has been generated automatically. Do not answer it. If you do not have initiated action to send this message please report it to us <a href=\"%{url}\"> clicking here </a>."
93
- footer_nice: "Have a nice day"
94
-
95
- activerecord:
96
- models:
97
- Helpdesk: helpdesk
98
- helpdesk/ticket: Issue
99
- helpdesk/comment: Comment
100
- attributes:
101
- helpdesk/comment:
102
- comment: Additional description
103
- public: Visible/Send Email
104
- helpdesk/ticket:
105
- requester_id: Requester
106
- subject: Subject
107
- Status: Status
108
- assignee_id: Assigned
109
- ticket_type_id: Type of notification
110
- Description: Description
111
- comments: More details
@@ -1,7 +1,6 @@
1
1
  pl:
2
2
 
3
3
  helpdesk:
4
- lang: Język
5
4
  show: Pokaż
6
5
  edit: Edytuj
7
6
  destroy: Usuń
@@ -11,7 +10,7 @@ pl:
11
10
  new: Nowe zgłoszenie
12
11
  my: Moje zgłoszenia
13
12
  unassigned: Nieprzypisane zgłoszenia
14
- closed: Zamknięte zgłoszenia
13
+ closed: Zamkniete zgłoszenia
15
14
  all: Wszystkie zgłoszenia
16
15
  title: Zgłoszenia
17
16
  active: Aktywne zgłoszenia
@@ -21,28 +20,16 @@ pl:
21
20
  is_now_assigned: "Zgłoszenie %{subject} zostało przypisane do Ciebie"
22
21
  visible_to_autor: Widoczny dla zgłaszającego - wyślij emaila
23
22
  you_have_no_tickets: "Brak zgłoszeń"
24
- ticket_closed: Zgłoszenie zamknięte
23
+ ticket_closed: Zgłoszenie zamkniete
25
24
  subject: Temat zgłoszenia
26
25
  description: Treść
27
- cancel: Anuluj
28
- send: Wyślij
29
- statuses:
30
- new: "Nowe"
31
- open: "Otwarte"
32
- waiting: "Otwarte: oczekujące"
33
- solved: "Zamknięte: problem rozwiązany"
34
- not_fixable: "Zamknięte: nienaprawialne"
35
- unreachable: "Zamknięte: klient nieosiągalny"
36
- bug: "Zamknięte: Przeniesione do bug tracker'a"
37
-
38
26
  ticket: Zgłoszenie
39
- faq: FAQ
40
27
  comments:
41
28
  title: Komentarze
42
29
  note: Notatka
43
30
  send: Wysłane
44
31
  received: Odebrane
45
- note: notatka
32
+ note: notatka
46
33
  author: Odp. autora
47
34
  helpdesk: Odp. BOK
48
35
  ticket_types:
@@ -54,16 +41,15 @@ pl:
54
41
 
55
42
  dashboard: Dashboard
56
43
 
57
- subscribers:
58
- title: Subskrybenci
44
+ subscribers:
45
+ title: Subskrynenci
59
46
  confirmed: Potwierdzeni subskrynenci
60
47
  unconfirmed: Niepotwierdzeni
61
- all: Wszyscy subskrybenci
62
- new: Dodaj subskrybenta
48
+ all: Wszyscy subskrynenci
49
+ new: Dodaj subskrynenta
63
50
 
64
51
  faqs:
65
52
  title: FAQ
66
- title_s: Często zadawane pytania
67
53
  active: Aktywne pytania
68
54
  inactive: Nieaktywne pytania
69
55
  all: Wszystkie pytania
@@ -73,31 +59,6 @@ pl:
73
59
  active: aktywne
74
60
  inactive: nieaktywne
75
61
 
76
- mailer:
77
- comment_by_helpdesk_confirmation:
78
- title: "Wysłano odpowiedź do zgłoszenia"
79
- re_ticket: "Odpowiedź dotyczy zgłoszenia"
80
- response_content: "Treść odpowiedzi:"
81
- comment_by_requester_notification:
82
- title: "Pojawiła się nowa odpowiedź do zgłoszenie:"
83
- comment_content: "Treść odpowiedzi:"
84
- comment_by_requester_confirmation:
85
- title: "%{user}, dziękujemy za przesłanie odpowiedzi do zgłoszenia"
86
- subject: "Odpowiedź dotyczy Twojego zgłoszenia - %{subject}"
87
- comment_content: "Treść odpowiedzi:"
88
- ticket_created_confirmation:
89
- title: "%{user}, dziękujemy za przesłanie zgłoszenia"
90
- subject: Temat Twojego zgłoszenia to
91
- ticket_content: "Treść zgłoszenia:"
92
- info_time: "Cenimy Twój czas, dlatego staramy się odpowiadać, tak szybko jak to możliwe."
93
- ticket_created_notification:
94
- title: "Pojawiło się nowe zgłoszenie:"
95
- requester_info: "Informacje o zgłaszającym:"
96
- ticket_content: "Treść zgłoszenia:"
97
- ticket_url_title: "Pod tym adresem można śledzić zgłoszenie:"
98
- footer_info: "Ta wiadomość została wygenerowana automatycznie. Nie odpowiadaj na nią. Jeśli nie zainicjowałeś akcji wysyłania tej wiadomości zgłoś to nam <a href=\"%{url}\">klikając tutaj</a>."
99
- footer_nice: "Życzymy miłego dnia"
100
-
101
62
 
102
63
 
103
64
  activerecord: