overlord 0.1.3 → 0.1.4
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.
- data/Rakefile +0 -2
- data/VERSION +1 -1
- data/app/views/google/_dynamic_feeds_vertical.html.erb +2 -2
- data/app/views/google/_feed.html.erb +2 -2
- data/app/views/google/_feed_search.html.erb +1 -1
- data/app/views/google/_search.html.erb +1 -1
- data/app/views/google/_slide_show.html.erb +2 -2
- data/lib/overlord.rb +1 -0
- data/overlord.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -68,6 +68,4 @@ desc 'Translate this gem'
|
|
|
68
68
|
task :translate do
|
|
69
69
|
file = File.join(File.dirname(__FILE__), 'locales', 'en.yml')
|
|
70
70
|
system("babelphish -o -y #{file}")
|
|
71
|
-
path = File.join(File.dirname(__FILE__), 'app', 'views', 'raker_mailer')
|
|
72
|
-
system("babelphish -o -h #{path} -l en")
|
|
73
71
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.4
|
|
@@ -17,6 +17,6 @@ google.setOnLoadCallback(function() {
|
|
|
17
17
|
});
|
|
18
18
|
<% end -%>
|
|
19
19
|
<div id="<%= content_id %>">
|
|
20
|
-
<%= t('
|
|
21
|
-
<img src="/images/spinner.gif" alt="<%= t('
|
|
20
|
+
<%= t('overlord.loading_message') %>
|
|
21
|
+
<img src="/images/spinner.gif" alt="<%= t('overlord.loading_image') %>" />
|
|
22
22
|
</div>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<%= link_to "(rss)", feed.uri, :target => 'blank' %>
|
|
26
26
|
<% if defined?(show_controls) && show_controls -%>
|
|
27
27
|
<span class="remove-feed feed-control">
|
|
28
|
-
<%= link_to t('
|
|
28
|
+
<%= link_to t('overlord.remove'), aggregation_feed_path(0, :aggregation_id => @aggregation.id, :feed_id => feed.id), :class => 'delete-link' %>
|
|
29
29
|
</span>
|
|
30
30
|
<% if use_uri_for_control -%>
|
|
31
31
|
<%= hidden_field_tag "uris[]", feed.uri -%>
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
</div>
|
|
38
38
|
<div class="feed-content">
|
|
39
39
|
<div id="<%= content_id %>" class="feed-item <%= feed_class(feed) %>">
|
|
40
|
-
<span class="waiting"><%= t('
|
|
40
|
+
<span class="waiting"><%= t('overlord.loading_message') %></span>
|
|
41
41
|
</div>
|
|
42
42
|
</div>
|
|
43
43
|
</div>
|
|
@@ -32,7 +32,7 @@ google.setOnLoadCallback(google_load_search);
|
|
|
32
32
|
</div>
|
|
33
33
|
<div class="feed-content">
|
|
34
34
|
<div id="<%= content_id %>" class="search-container">
|
|
35
|
-
<span class="waiting"><%= t('
|
|
35
|
+
<span class="waiting"><%= t('overlord.loading_message') %></span>
|
|
36
36
|
</div>
|
|
37
37
|
</div>
|
|
38
38
|
</div>
|
|
@@ -9,6 +9,6 @@ google.setOnLoadCallback(function() {
|
|
|
9
9
|
});
|
|
10
10
|
<% end -%>
|
|
11
11
|
<div id="<%= content_id %>" class="slide_show_content">
|
|
12
|
-
<%= t('
|
|
13
|
-
<img src="/images/spinner.gif" alt="<%= t('
|
|
12
|
+
<%= t('overlord.loading_message') %>
|
|
13
|
+
<img src="/images/spinner.gif" alt="<%= t('overlord.loading_image') %>" />
|
|
14
14
|
</div>
|
data/lib/overlord.rb
CHANGED
data/overlord.gemspec
CHANGED