diff --git a/app/controllers/weeler/static_sections_controller.rb b/app/controllers/weeler/static_sections_controller.rb index ecd8206..e72a852 100644 --- a/app/controllers/weeler/static_sections_controller.rb +++ b/app/controllers/weeler/static_sections_controller.rb @@ -15,5 +15,9 @@ def update Settings.i18n_updated_at = Time.now redirect_to({action: :show, id: params[:id]}, {flash: {success: "Section updated."}}) end + protected + def set_current_menu_item + @current_menu_item = "content" + end end end diff --git a/lib/i18n/backend/weeler.rb b/lib/i18n/backend/weeler.rb index cc55c65..072eeb5 100644 --- a/lib/i18n/backend/weeler.rb +++ b/lib/i18n/backend/weeler.rb @@ -103,6 +103,7 @@ def lookup_in_database locale, key, scope = [], options = {} # For a key :'foo.bar.baz' return ['foo', 'foo.bar', 'foo.bar.baz'] def expand_keys(key) + # TODO: fixme. warning: shadowing outer local variable - key key.to_s.split(FLATTEN_SEPARATOR).inject([]) do |keys, key| keys << [keys.last, key].compact.join(FLATTEN_SEPARATOR) end @@ -112,7 +113,11 @@ def expand_keys(key) def store_empty_translation locale, key, options return_value = nil interpolations = options.keys - I18n::RESERVED_KEYS + + # TODO: fixme. warning: shadowing outer local variable - key keys = options[:count] ? PLURAL_KEYS.map { |k| [key, k].join(FLATTEN_SEPARATOR) } : [key] + + keys.each do |key| translation = Weeler::Translation.find_or_initialize_by locale: locale.to_s, key: key translation.interpolations = interpolations diff --git a/rspec.html b/rspec.html index 6d1921a..81d602a 100644 --- a/rspec.html +++ b/rspec.html @@ -281,142 +281,142 @@

RSpec Code Examples

-
I18n::Backend::Weeler::Importer
+
Weeler::TranslationsController
-
import
+
GET #index
+ +
list translations0.11785s
-
-
empty db
- -
translation stores all translation in each locale0.24314s
+
+
#create
-
returns value if value is in file0.11083s
- -
returns nil if value is not file0.15657s
+
creates translation in DB0.09799s
-
-
full db
- -
file import overrides value0.11005s
+
+
I18n::Backend::Weeler::Dedupe
-
-
Weeler::TranslationsController
+
+
#dedupe
-
-
GET #index
- -
list translations0.05152s
+
+
empty db
+ +
translation stores all translation in each locale0.01809s
-
-
#create
- -
creates translation in DB0.04089s
+
+
Weeler::ActionController::Acts::Restful
-
-
I18n::Backend::Weeler::Dedupe
+
+
acts_as_restful
-
-
#dedupe
+
+
model
+ +
returns current controller model0.02040s
-
empty db
- -
translation stores all translation in each locale0.01575s
+
actions
+ +
POST #order0.02717s
-
-
#<ActionDispatch::Routing::RouteSet:0x000001036c4e50>
+
+
GET #index
+ +
returns success0.02082s
+ +
assigns posts0.01880s
-
-
#mount Weeler::Engine
+
+
POST #create
-
/weeler returns home0.03295s
+
redirects to edit path0.02085s
+ +
sets only permited attributes0.02315s
-
-
#add_menu_item
- -
adds resource to weeler menu item0.02891s
+
+
GET #edit
+ +
returns success status0.02157s
-
-
#weeler_resources
- -
mounts resource show route0.03883s
+
+
GET #new
-
mounts resources index route0.03561s
- -
mounts resource edit route0.07418s
- -
mounts resource destroy route0.04261s
- -
mounts resource create route0.05371s
- -
mounts resource update route0.03972s
- -
mounts resource new route0.03914s
+
returns success status0.02117s
-
-
when destroy route is skiped within with only: option
- -
does not mount destroy confirm route0.06441s
+
+
PUT #update
+ +
sets only permited attributes0.02220s
-
-
when custom block given
- -
calls it within resources method0.05505s
+
+
DELETE #destroy
+ +
destroys item0.02120s
-
I18n::HumanizeMissingTranslations
+
I18n::Backend::Weeler::Exporter
-
.call
+
as_xlsx_package
-
when exception is I18n::MissingTranslation
- -
humanizes missing translations0.00993s
+
all translations
+ +
should have 3 rows0.00760s
+ +
other row with one translation0.00561s
+ +
other row with two translation0.00554s
+ +
first row should be title0.00486s
-
when exception is not I18n::MissingTranslation
+
selected translations
+ +
should have 2 rows0.00729s
+ +
other row with one translation0.00536s
-
does not intercept it0.01044s
+
first row should be title0.00580s
@@ -426,247 +426,247 @@

RSpec Code Examples

-
#reload_cache
+
#html?
-
clears translations cache0.00631s
+
is true if key is html0.00572s
-
writes last translations update timestamp to cache0.01020s
+
is false if value not contains html0.02330s
-
loads all translated data to cache0.01186s
+
is true if value contains html0.00594s
-
#html?
+
#value
-
is true if key is html0.00722s
+
returns boolean if translation boolean0.01080s
-
is true if value contains html0.01235s
- -
is false if value not contains html0.00545s
+
runs kernel if translation is_proc0.00870s
-
groups
- -
returns 2 groups0.00636s
- -
returns ordered list0.00541s
+
#available_locales
+ +
finds one locale0.00536s
-
#interpolations
- -
can persist0.00827s
+
groups
+ +
returns 2 groups0.00617s
+ +
returns ordered list0.00571s
-
#value
+
#lookup
+ +
show warning0.00600s
-
returns boolean if translation boolean0.01015s
- -
runs kernel if translation is_proc0.01711s
+
returns translation0.01091s
-
-
#available_locales
- -
finds one locale0.00589s
+
+
cache
-
-
#store_translations
- -
store_translations does not allow ambiguous keys (1)0.02116s
- -
store_translations does not allow ambiguous keys (2)0.01782s
- -
can store translations with keys that are translations containing special chars0.01043s
+
+
differs from settings timestamp
+ +
reloads cache0.01512s
-
-
#lookup
- -
show warning0.00603s
- -
returns translation0.01050s
+
+
is same as updates timestamp
+ +
does not reload cache0.01897s
-
cache
+
missing translations
+ +
persists the key0.01387s
+ +
creates one stub per pluralization0.01672s
+ +
lookup persists interpolation keys when looked up directly0.01272s
+ +
creates no stub for base key in pluralization0.01573s
+ +
creates a stub per pluralization when a custom separator is used0.01576s
+ +
creates a stub when a custom separator is used and the key contains the flatten separator (a dot character)0.01515s
+ +
creates a stub when a custom separator is used0.01544s
+ +
lookup does not persist the key twice0.01099s
-
differs from settings timestamp
- -
reloads cache0.01667s
+
exist in yml
-
-
is same as updates timestamp
- -
does not reload cache0.01006s
+
+
new translation
+ +
persist it0.01387s
-
-
missing translations
- -
creates a stub when a custom separator is used0.01427s
- -
persists the key0.01638s
+
+
already stored
-
creates one stub per pluralization0.01525s
- -
lookup does not persist the key twice0.01102s
- -
creates a stub when a custom separator is used and the key contains the flatten separator (a dot character)0.01341s
- -
creates a stub per pluralization when a custom separator is used0.01467s
- -
lookup persists interpolation keys when looked up directly0.01060s
- -
creates no stub for base key in pluralization0.03236s
+
saves the fallback backend value0.01118s
-
-
exist in yml
+
+
#store_translations
+ +
store_translations does not allow ambiguous keys (1)0.02144s
+ +
can store translations with keys that are translations containing special chars0.01061s
+ +
store_translations does not allow ambiguous keys (2)0.01799s
-
-
new translation
+
+
#reload_cache
+ +
clears translations cache0.00707s
+ +
loads all translated data to cache0.01541s
-
persist it0.01272s
+
writes last translations update timestamp to cache0.01280s
-
-
already stored
+
+
#interpolations
-
saves the fallback backend value0.01078s
+
can persist0.00923s
-
Weeler::ActionController::Acts::Restful
+
I18n::HumanizeMissingTranslations
-
acts_as_restful
+
.call
-
model
+
when exception is I18n::MissingTranslation
-
returns current controller model0.01917s
+
humanizes missing translations0.01042s
-
actions
+
when exception is not I18n::MissingTranslation
-
POST #order0.02281s
+
does not intercept it0.00942s
-
-
GET #new
- -
returns success status0.01930s
+
+
I18n::Backend::Weeler::Importer
-
-
GET #index
- -
returns success0.01860s
- -
assigns posts0.01779s
+
+
import
-
-
GET #edit
- -
returns success status0.02011s
+
+
empty db
+ +
translation stores all translation in each locale0.20564s
+ +
returns nil if value is not file0.11116s
+ +
returns value if value is in file0.11343s
-
-
POST #create
- -
redirects to edit path0.02086s
- -
sets only permited attributes0.02056s
+
+
full db
+ +
file import overrides value0.11656s
-
-
DELETE #destroy
- -
destroys item0.01884s
+
+
#<ActionDispatch::Routing::RouteSet:0x00000101cef8b8>
-
-
PUT #update
- -
sets only permited attributes0.02047s
+
+
#mount Weeler::Engine
+ +
/weeler returns home0.04571s
-
-
I18n::Backend::Weeler::Exporter
-
-
-
-
as_xlsx_package
-
-
-
-
-
all translations
+
#weeler_resources
+ +
mounts resources index route0.04719s
+ +
mounts resource show route0.04237s
+ +
mounts resource new route0.04266s
-
should have 3 rows0.00637s
+
mounts resource edit route0.05215s
-
other row with two translation0.00550s
+
mounts resource destroy route0.04231s
-
other row with one translation0.00563s
+
mounts resource update route0.04061s
-
first row should be title0.00572s
+
mounts resource create route0.04152s
-
+
-
selected translations
+
when destroy route is skiped within with only: option
-
should have 2 rows0.00625s
+
does not mount destroy confirm route0.06617s
+
+
+
+
+
when custom block given
-
first row should be title0.00566s
+
calls it within resources method0.05914s
+
+
+
+
+
#add_menu_item
-
other row with one translation0.00546s
+
adds resource to weeler menu item0.03043s
- +
-Randomized with seed 61231 +Randomized with seed 40439 diff --git a/spec/dummy/db/test.sqlite3 b/spec/dummy/db/test.sqlite3 index e7f9710..3948ba1 100644 Binary files a/spec/dummy/db/test.sqlite3 and b/spec/dummy/db/test.sqlite3 differ diff --git a/spec/dummy/log/test.log b/spec/dummy/log/test.log index aa2b88e..ddb1216 100644 --- a/spec/dummy/log/test.log +++ b/spec/dummy/log/test.log @@ -420576,3 +420576,1915 @@ Completed 302 Found in 3ms (ActiveRecord: 0.9ms)  (0.7ms) DELETE FROM "posts";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (1.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.444713"], ["interpolations", "--- []\n"], ["key", "foo.bar"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.444713"], ["value", "--- This is weeler\n...\n"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.452487"], ["interpolations", "--- []\n"], ["key", "bar.foo"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.452487"], ["value", "--- This is weeler\n...\n"]] +  (0.7ms) commit transaction +Processing by Weeler::TranslationsController#index as HTML + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations"."key" FROM "weeler_translations" WHERE (key NOT LIKE 'activerecord%') AND (key NOT LIKE 'attributes%') AND (key NOT LIKE 'helpers%') AND (key NOT LIKE 'views%') AND (key NOT LIKE 'i18n%') AND (key NOT LIKE 'weeler%') ORDER BY key + Rendered /Users/arturs/workspace/weby/weeler/app/views/weeler/translations/index.html.haml within layouts/weeler/base (0.3ms) +Completed 200 OK in 23ms (Views: 13.8ms | ActiveRecord: 0.2ms) +  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "weeler_translations" WHERE "weeler_translations"."locale" IN ('en', 'lv') AND (key NOT LIKE 'activerecord%') AND (key NOT LIKE 'attributes%') AND (key NOT LIKE 'helpers%') AND (key NOT LIKE 'views%') AND (key NOT LIKE 'i18n%') AND (key NOT LIKE 'weeler%') LIMIT 20 OFFSET 0) subquery_for_count +  (1.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (1.2ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (1.0ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.9ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'title' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.562723"], ["interpolations", "--- []\n"], ["key", "title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.562723"], ["value", nil]] +  (0.5ms) commit transaction + SQL (0.6ms) DELETE FROM "weeler_translations" +Processing by Weeler::TranslationsController#create as HTML + Parameters: {"i18n_backend_weeler_translation"=>{"locale"=>"en", "key"=>"title", "value"=>"This is weeler"}} +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.568340"], ["interpolations", "--- []\n"], ["key", "title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.568340"], ["value", "--- This is weeler\n...\n"]] +  (0.6ms) commit transaction + Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = 'i18n_updated_at' ORDER BY "settings"."id" ASC LIMIT 1 +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.579545"], ["updated_at", "2014-07-24 18:49:36.579545"], ["value", "--- 2014-07-24 21:49:36.570150000 +03:00\n...\n"], ["var", "i18n_updated_at"]] +  (0.6ms) commit transaction +Redirected to http://test.host/weeler/translations/2/edit +Completed 302 Found in 16ms (ActiveRecord: 2.0ms) + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.594557"], ["interpolations", "--- []\n"], ["key", "weeler.dublicate"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.594557"], ["value", nil]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.596842"], ["interpolations", "--- []\n"], ["key", "weeler.dublicate"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.596842"], ["value", nil]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.599099"], ["interpolations", "--- []\n"], ["key", "weeler.dublicate"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.599099"], ["value", nil]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.0ms) begin transaction + SQL (0.2ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."id" = ? [["id", 2]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."id" = ? [["id", 3]] +  (0.7ms) commit transaction +  (0.1ms) SELECT COUNT(*) FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'weeler.dublicate' +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.623981"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.623981"]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.626297"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.626297"]] +  (0.5ms) commit transaction +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.641064"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.641064"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.642979"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.642979"]] +  (0.6ms) commit transaction +Processing by AnonymousController#order as HTML + Parameters: {"orders"=>"order[]=2&order[]=1"} + Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 2 LIMIT 1 +  (0.0ms) begin transaction +  (0.0ms) commit transaction + Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "posts" SET "sequence" = ?, "updated_at" = ? WHERE "posts"."id" = 1 [["sequence", 1], ["updated_at", "2014-07-24 18:49:36.652955"]] +  (0.7ms) commit transaction +Completed 200 OK in 7ms (Views: 2.1ms | ActiveRecord: 1.3ms) + Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."sequence" ASC LIMIT 1 + Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."sequence" DESC LIMIT 1 +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.668643"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.668643"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.670782"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.670782"]] +  (0.5ms) commit transaction +Processing by AnonymousController#index as HTML +Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms) +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.689540"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.689540"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.3ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.691234"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.691234"]] +  (0.6ms) commit transaction +Processing by AnonymousController#index as HTML +Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) +  (0.1ms) SELECT COUNT(*) FROM "posts" +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.8ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.709203"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.709203"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.711028"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.711028"]] +  (0.6ms) commit transaction +Processing by AnonymousController#create as HTML + Parameters: {"post"=>{"title"=>"Foo bar", "body"=>"Foo baar bazaar"}} +Unpermitted parameters: body +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-24 18:49:36.718344"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.718344"]] +  (0.6ms) commit transaction +Redirected to http://test.host/anonymous/3/edit +Completed 302 Found in 3ms (ActiveRecord: 0.8ms) + Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1 +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.729852"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.729852"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.731614"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.731614"]] +  (0.5ms) commit transaction +Processing by AnonymousController#create as HTML + Parameters: {"post"=>{"title"=>"Foo bar", "body"=>"Heila"}} +Unpermitted parameters: body +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-24 18:49:36.740111"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.740111"]] +  (0.7ms) commit transaction +Redirected to http://test.host/anonymous/3/edit +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1 +  (1.0ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.9ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.753897"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.753897"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.755862"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.755862"]] +  (0.7ms) commit transaction + Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1 +Processing by AnonymousController#edit as HTML + Parameters: {"id"=>"2"} + Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] +Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms) +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.775540"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.775540"]] +  (0.8ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.777924"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.777924"]] +  (0.6ms) commit transaction +Processing by AnonymousController#new as HTML +Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms) +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.9ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.797254"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.797254"]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.798962"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.798962"]] +  (0.6ms) commit transaction + Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1 +Processing by AnonymousController#update as HTML + Parameters: {"post"=>{"title"=>"Shivauva", "body"=>"Another world!"}, "id"=>"2"} + Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] +Unpermitted parameters: body +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "posts" SET "title" = ?, "updated_at" = ? WHERE "posts"."id" = 2 [["title", "Shivauva"], ["updated_at", "2014-07-24 18:49:36.807040"]] +  (0.7ms) commit transaction +Redirected to http://test.host/anonymous/2/edit +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.5ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.820306"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.820306"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "posts" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["body", "Foo baar bazaar"], ["created_at", "2014-07-24 18:49:36.822268"], ["title", "Foo bar"], ["updated_at", "2014-07-24 18:49:36.822268"]] +  (0.6ms) commit transaction + Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1 +Processing by AnonymousController#destroy as HTML + Parameters: {"id"=>"2"} + Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] +  (0.0ms) begin transaction + SQL (0.1ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 2]] +  (0.6ms) commit transaction +Redirected to http://test.host/anonymous +Completed 302 Found in 2ms (ActiveRecord: 0.8ms) + Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", 2]] +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.8ms) DELETE FROM "weeler_translations" + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo','foo.one') OR "key" LIKE 'foo.one.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.841532"], ["interpolations", "--- []\n"], ["key", "foo.one"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.841532"], ["value", "--- test\n...\n"]] +  (0.6ms) commit transaction + SQL (0.2ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo','foo.two') OR "key" LIKE 'foo.two.%') +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.844452"], ["interpolations", "--- []\n"], ["key", "foo.two"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.844452"], ["value", nil]] +  (0.6ms) commit transaction + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND ("key" IN ('foo','foo.two') OR "key" LIKE 'foo.two.%') +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.846792"], ["interpolations", "--- []\n"], ["key", "foo.two"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:36.846792"], ["value", "--- some\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo.one') OR "key" LIKE 'foo.one.%') + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND ("key" IN ('foo.one') OR "key" LIKE 'foo.one.%') + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo.two') OR "key" LIKE 'foo.two.%') + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND ("key" IN ('foo.two') OR "key" LIKE 'foo.two.%') +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.7ms) DELETE FROM "weeler_translations" + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo','foo.one') OR "key" LIKE 'foo.one.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.878978"], ["interpolations", "--- []\n"], ["key", "foo.one"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.878978"], ["value", "--- test\n...\n"]] +  (0.6ms) commit transaction + SQL (0.2ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo','foo.two') OR "key" LIKE 'foo.two.%') +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.881596"], ["interpolations", "--- []\n"], ["key", "foo.two"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.881596"], ["value", nil]] +  (0.5ms) commit transaction + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND ("key" IN ('foo','foo.two') OR "key" LIKE 'foo.two.%') +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.883571"], ["interpolations", "--- []\n"], ["key", "foo.two"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:36.883571"], ["value", "--- some\n...\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."key" = 'foo.one' + I18n::Backend::Weeler::Translation Load (0.3ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."key" = 'foo.one' AND "weeler_translations"."locale" = 'en' AND ("key" IN ('foo.one') OR "key" LIKE 'foo.one.%') + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."key" = 'foo.one' AND "weeler_translations"."locale" = 'lv' AND ("key" IN ('foo.one') OR "key" LIKE 'foo.one.%') +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.9ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.909573"], ["interpolations", "--- []\n"], ["key", "methods.body_html"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.909573"], ["value", "--- Super duper\n...\n"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.912222"], ["interpolations", "--- []\n"], ["key", "methods.body"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.912222"], ["value", "--- Super duper\n...\n"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.914061"], ["interpolations", "--- []\n"], ["key", "methods.body_fake"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.914061"], ["value", "--- Super < b\n...\n"]] +  (0.6ms) commit transaction +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.5ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.5ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (1.0ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.952184"], ["interpolations", "--- []\n"], ["key", "valid"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.952184"], ["value", "--- !binary |-\n AQ==\n"]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.954593"], ["interpolations", "--- []\n"], ["key", "invalid"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.954593"], ["value", "--- !binary |-\n Ag==\n"]] +  (0.6ms) commit transaction +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.9ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "is_proc", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.962885"], ["interpolations", "--- []\n"], ["is_proc", "t"], ["key", "valid"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.962885"], ["value", "--- p 'This ir proc!'\n...\n"]] +  (0.6ms) commit transaction +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('group2','group2.test2') OR "key" LIKE 'group2.test2.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.978212"], ["interpolations", "--- []\n"], ["key", "group2.test2"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.978212"], ["value", "--- bar\n...\n"]] +  (0.7ms) commit transaction + SQL (0.2ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('group1','group1.test') OR "key" LIKE 'group1.test.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.981567"], ["interpolations", "--- []\n"], ["key", "group1.test"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.981567"], ["value", "--- bar\n...\n"]] +  (0.6ms) commit transaction + SQL (0.2ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('group1','group1.test3') OR "key" LIKE 'group1.test3.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:36.984431"], ["interpolations", "--- []\n"], ["key", "group1.test3"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:36.984431"], ["value", "--- bar\n...\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations"."key" FROM "weeler_translations" WHERE (key NOT LIKE 'activerecord%') AND (key NOT LIKE 'attributes%') AND (key NOT LIKE 'helpers%') AND (key NOT LIKE 'views%') AND (key NOT LIKE 'i18n%') AND (key NOT LIKE 'weeler%') ORDER BY key +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.006746"], ["interpolations", "--- []\n"], ["key", "title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.006746"], ["value", "--- This is weeler\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.5ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.5ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = 'i18n_updated_at' ORDER BY "settings"."id" ASC LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.019413"], ["updated_at", "2014-07-24 18:49:37.019413"], ["value", "--- 2014-07-24 21:49:37.017610000 +03:00\n...\n"], ["var", "i18n_updated_at"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'admin.content.cancel' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.023223"], ["interpolations", "--- []\n"], ["key", "admin.content.cancel"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.023223"], ["value", nil]] +  (0.6ms) commit transaction +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'admin.content.cancel' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.035176"], ["interpolations", "--- []\n"], ["key", "admin.content.cancel"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.035176"], ["value", nil]] +  (1.0ms) commit transaction +  (1.0ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (6.9ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'hello' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.054169"], ["interpolations", "--- []\n"], ["key", "hello"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.054169"], ["value", "--- Hello world\n...\n"]] +  (1.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.1ms) SELECT COUNT(*) FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'hello' LIMIT 1 +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.9ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.zero' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.069293"], ["interpolations", "---\n- :count\n"], ["key", "foo.zero"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.069293"], ["value", nil]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.one' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.072555"], ["interpolations", "---\n- :count\n"], ["key", "foo.one"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.072555"], ["value", nil]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.other' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.074855"], ["interpolations", "---\n- :count\n"], ["key", "foo.other"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.074855"], ["value", nil]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" IN ('foo.zero', 'foo.one', 'foo.other') +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.bar.baz' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.086226"], ["interpolations", "---\n- :cow\n"], ["key", "foo.bar.baz"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.086226"], ["value", nil]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo.bar.baz') OR "key" LIKE 'foo.bar.baz.%') ORDER BY "weeler_translations"."id" ASC LIMIT 1 +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.zero' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.097984"], ["interpolations", "---\n- :count\n"], ["key", "foo.zero"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.097984"], ["value", nil]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.one' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.100205"], ["interpolations", "---\n- :count\n"], ["key", "foo.one"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.100205"], ["value", nil]] +  (0.8ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.other' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.102894"], ["interpolations", "---\n- :count\n"], ["key", "foo.other"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.102894"], ["value", nil]] +  (0.6ms) commit transaction +  (0.1ms) SELECT COUNT(*) FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo') OR "key" LIKE 'foo.%') + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo' LIMIT 1 +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.bar.zero' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.113923"], ["interpolations", "---\n- :count\n"], ["key", "foo.bar.zero"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.113923"], ["value", nil]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.bar.one' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.116395"], ["interpolations", "---\n- :count\n"], ["key", "foo.bar.one"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.116395"], ["value", nil]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.bar.other' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.118929"], ["interpolations", "---\n- :count\n"], ["key", "foo.bar.other"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.118929"], ["value", nil]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" IN ('foo.bar.zero', 'foo.bar.one', 'foo.bar.other') +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.bazzab' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.129750"], ["interpolations", "--- []\n"], ["key", "foo.baz\u0001zab"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.129750"], ["value", nil]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo.bazzab') OR "key" LIKE 'foo.bazzab.%') ORDER BY "weeler_translations"."id" ASC LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "weeler_translations" SET "interpolations" = ?, "updated_at" = ?, "value" = ? WHERE "weeler_translations"."id" = 1 [["interpolations", "--- []\n"], ["updated_at", "2014-07-24 18:49:37.132450"], ["value", "--- baz!\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.baz' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.145281"], ["interpolations", "--- []\n"], ["key", "foo.baz"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.145281"], ["value", nil]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo.baz') OR "key" LIKE 'foo.baz.%') ORDER BY "weeler_translations"."id" ASC LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) UPDATE "weeler_translations" SET "interpolations" = ?, "updated_at" = ?, "value" = ? WHERE "weeler_translations"."id" = 1 [["interpolations", "--- []\n"], ["updated_at", "2014-07-24 18:49:37.148063"], ["value", "--- baz!\n...\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.bar.baz' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.160766"], ["interpolations", "--- []\n"], ["key", "foo.bar.baz"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.160766"], ["value", nil]] +  (0.7ms) commit transaction +  (0.1ms) SELECT COUNT(*) FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo.bar.baz' LIMIT 1 +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'hello' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.172496"], ["interpolations", "--- []\n"], ["key", "hello"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.172496"], ["value", "--- Hello world\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'hello' LIMIT 1 +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.185203"], ["interpolations", "--- []\n"], ["key", "weeler.test.cms_title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.185203"], ["value", nil]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'weeler.test.cms_title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) UPDATE "weeler_translations" SET "interpolations" = ?, "updated_at" = ?, "value" = ? WHERE "weeler_translations"."id" = 1 [["interpolations", "--- []\n"], ["updated_at", "2014-07-24 18:49:37.189432"], ["value", "--- Weeler is cool\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'weeler.test.cms_title' LIMIT 1 +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.5ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.6ms) DELETE FROM "weeler_translations" + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo') OR "key" LIKE 'foo.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.200462"], ["interpolations", "--- []\n"], ["key", "foo"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.200462"], ["value", "--- foo\n...\n"]] +  (0.8ms) commit transaction + SQL (0.7ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo','foo.bar') OR "key" LIKE 'foo.bar.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.204258"], ["interpolations", "--- []\n"], ["key", "foo.bar"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.204258"], ["value", "--- bar\n...\n"]] +  (0.6ms) commit transaction + SQL (0.2ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo','foo.baz') OR "key" LIKE 'foo.baz.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.207057"], ["interpolations", "--- []\n"], ["key", "foo.baz"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.207057"], ["value", "--- baz\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo') OR "key" LIKE 'foo.%') + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'foo' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.212446"], ["interpolations", "--- []\n"], ["key", "foo"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.212446"], ["value", nil]] +  (0.6ms) commit transaction +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.8ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('Pagina''s') OR "key" LIKE 'Pagina''s.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.221489"], ["interpolations", "--- []\n"], ["key", "Pagina's"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.221489"], ["value", "--- Pagina's\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.6ms) DELETE FROM "weeler_translations" + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo','foo.bar') OR "key" LIKE 'foo.bar.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.232706"], ["interpolations", "--- []\n"], ["key", "foo.bar"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.232706"], ["value", "--- bar\n...\n"]] +  (0.6ms) commit transaction + SQL (0.2ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo','foo.baz') OR "key" LIKE 'foo.baz.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.235344"], ["interpolations", "--- []\n"], ["key", "foo.baz"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.235344"], ["value", "--- baz\n...\n"]] +  (0.8ms) commit transaction + SQL (0.8ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo') OR "key" LIKE 'foo.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.238992"], ["interpolations", "--- []\n"], ["key", "foo"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.238992"], ["value", "--- foo\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('foo') OR "key" LIKE 'foo.%') + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.257345"], ["interpolations", "--- []\n"], ["key", "weeler.test.value"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.257345"], ["value", "--- testējam\n...\n"]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.262308"], ["interpolations", "--- []\n"], ["key", "weeler.test.value"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.262308"], ["value", "--- testing\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.9ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = 'i18n_updated_at' ORDER BY "settings"."id" ASC LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.274645"], ["updated_at", "2014-07-24 18:49:37.274645"], ["value", "--- 2014-07-24 21:49:37.272779000 +03:00\n...\n"], ["var", "i18n_updated_at"]] +  (0.8ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.286570"], ["interpolations", "---\n- count\n- name\n"], ["key", "foo"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.286570"], ["value", "--- bar\n...\n"]] +  (0.7ms) commit transaction +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'some.missing translation' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.298053"], ["interpolations", "--- []\n"], ["key", "some.missing translation"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.298053"], ["value", nil]] +  (0.6ms) commit transaction +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'i18n.transliterate.rule' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.308665"], ["interpolations", "--- []\n"], ["key", "i18n.transliterate.rule"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.308665"], ["value", nil]] +  (0.6ms) commit transaction +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.7ms) DELETE FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.436687"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.436687"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.439504"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.439504"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.441786"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.441786"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.444807"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.444807"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.447468"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.447468"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.450580"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.450580"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.453772"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.453772"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.456121"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.456121"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.458645"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.458645"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.461886"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.461886"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.464193"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.464193"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.466528"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.466528"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.470163"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.470163"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.472512"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.472512"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.474913"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.474913"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.477963"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.477963"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.480342"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.480342"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.482790"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.482790"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.485746"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.485746"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.487886"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.487886"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.490064"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.490064"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.493124"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.493124"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.495584"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.495584"], ["value", "--- Only here\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.498031"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.498031"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.501172"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.501172"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.503672"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.503672"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.506055"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.506055"], ["value", "--- Vēl!\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.509176"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.509176"], ["value", "--- Lit\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.511546"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.511546"], ["value", "--- EN welcome\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.513927"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.513927"], ["value", "--- SveikI!\n...\n"]] +  (0.7ms) commit transaction +  (0.1ms) SELECT COUNT(*) FROM "weeler_translations" +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.7ms) DELETE FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.532140"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.532140"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.534893"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.534893"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.537377"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.537377"], ["value", "--- ''\n"]] +  (0.8ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.540796"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.540796"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.543124"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.543124"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.545394"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.545394"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.548508"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.548508"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.550847"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.550847"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.553273"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.553273"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.556363"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.556363"], ["value", "--- ''\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.558741"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.558741"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.561222"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.561222"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.564618"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.564618"], ["value", "--- ''\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.566794"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.566794"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.569721"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.569721"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.573471"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.573471"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.575831"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.575831"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.578891"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.578891"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.582086"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.582086"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.584293"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.584293"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.586994"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.586994"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.590981"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.590981"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.594062"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.594062"], ["value", "--- Only here\n...\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.596383"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.596383"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.599641"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.599641"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.602074"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.602074"], ["value", "--- ''\n"]] +  (0.8ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.612620"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.612620"], ["value", "--- Vēl!\n...\n"]] +  (0.8ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.617323"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.617323"], ["value", "--- Lit\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.620177"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.620177"], ["value", "--- EN welcome\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.622822"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.622822"], ["value", "--- SveikI!\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "weeler_translations" SET "interpolations" = ?, "updated_at" = ?, "value" = ? WHERE "weeler_translations"."id" = 17 [["interpolations", "--- []\n"], ["updated_at", "2014-07-24 18:49:37.625991"], ["value", "--- ''\n"]] +  (0.5ms) commit transaction +  (0.7ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.9ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.8ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.7ms) DELETE FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.643296"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.643296"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.646271"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.646271"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.648867"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.648867"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.652696"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.652696"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.656072"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.656072"], ["value", "--- ''\n"]] +  (0.8ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.659197"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.659197"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.4ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.663110"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.663110"], ["value", "--- ''\n"]] +  (5.1ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.671015"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.671015"], ["value", "--- ''\n"]] +  (3.1ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.676892"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.676892"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.680637"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.680637"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.683138"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.683138"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.686415"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.686415"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.689921"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.689921"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.692349"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.692349"], ["value", "--- ''\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.694736"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.694736"], ["value", "--- ''\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.697736"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.697736"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.700407"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.700407"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.703123"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.703123"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.706810"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.706810"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.709368"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.709368"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.711719"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.711719"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.715108"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.715108"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.4ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.718142"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.718142"], ["value", "--- Only here\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.720510"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.720510"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.723729"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.723729"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.726080"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.726080"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.728366"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.728366"], ["value", "--- Vēl!\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.731703"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.731703"], ["value", "--- Lit\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.734172"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.734172"], ["value", "--- EN welcome\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.736900"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.736900"], ["value", "--- SveikI!\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) UPDATE "weeler_translations" SET "interpolations" = ?, "updated_at" = ?, "value" = ? WHERE "weeler_translations"."id" = 30 [["interpolations", "--- []\n"], ["updated_at", "2014-07-24 18:49:37.740244"], ["value", "--- SveikI!\n...\n"]] +  (0.6ms) commit transaction +  (0.6ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.5ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; + SQL (0.8ms) DELETE FROM "weeler_translations" + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" + SQL (0.1ms) DELETE FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('welcome','welcome.title') OR "key" LIKE 'welcome.title.%') +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.750727"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.750727"], ["value", "--- fooo\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) UPDATE "weeler_translations" SET "interpolations" = ?, "updated_at" = ?, "value" = ? WHERE "weeler_translations"."id" = 1 [["interpolations", "--- []\n"], ["updated_at", "2014-07-24 18:49:37.753913"], ["value", "--- fooo\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.763892"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.763892"], ["value", "--- ''\n"]] +  (0.8ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.767357"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.767357"], ["value", "--- ''\n"]] +  (0.8ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'footer.copyright' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.771026"], ["interpolations", "--- []\n"], ["key", "footer.copyright"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.771026"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.775112"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.775112"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.777903"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.777903"], ["value", "--- ''\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'footer.links.about_us' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.780372"], ["interpolations", "--- []\n"], ["key", "footer.links.about_us"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.780372"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.784160"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.784160"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.786934"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.786934"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'header.phone' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.789295"], ["interpolations", "--- []\n"], ["key", "header.phone"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.789295"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.792505"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.792505"], ["value", "--- ''\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.794710"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.794710"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'header.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.796908"], ["interpolations", "--- []\n"], ["key", "header.title"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.796908"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.799770"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.799770"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.802512"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.802512"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.list.close' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.805001"], ["interpolations", "--- []\n"], ["key", "product.list.close"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.805001"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.808268"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.808268"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.810517"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.810517"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.list.open' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.812801"], ["interpolations", "--- []\n"], ["key", "product.list.open"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.812801"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.816024"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.816024"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.818335"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.818335"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'product.sidebar.recipe' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.820553"], ["interpolations", "--- []\n"], ["key", "product.sidebar.recipe"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.820553"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.823666"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.823666"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.826023"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.826023"], ["value", "--- Only here\n...\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.description' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.828378"], ["interpolations", "--- []\n"], ["key", "welcome.description"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.828378"], ["value", "--- ''\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.831728"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.831728"], ["value", "--- ''\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.834571"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "en"], ["updated_at", "2014-07-24 18:49:37.834571"], ["value", "--- ''\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.product.more_link' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.837143"], ["interpolations", "--- []\n"], ["key", "welcome.product.more_link"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.837143"], ["value", "--- Vēl!\n...\n"]] +  (0.7ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lt' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.1ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.841104"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "lt"], ["updated_at", "2014-07-24 18:49:37.841104"], ["value", "--- Lit\n...\n"]] +  (0.6ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.1ms) UPDATE "weeler_translations" SET "interpolations" = ?, "updated_at" = ?, "value" = ? WHERE "weeler_translations"."id" = 1 [["interpolations", "--- []\n"], ["updated_at", "2014-07-24 18:49:37.843681"], ["value", "--- EN welcome\n...\n"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.1ms) SELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'lv' AND "weeler_translations"."key" = 'welcome.title' LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.846001"], ["interpolations", "--- []\n"], ["key", "welcome.title"], ["locale", "lv"], ["updated_at", "2014-07-24 18:49:37.846001"], ["value", "--- SveikI!\n...\n"]] +  (0.7ms) commit transaction + Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = 'i18n_updated_at' ORDER BY "settings"."id" ASC LIMIT 1 +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?) [["created_at", "2014-07-24 18:49:37.849090"], ["updated_at", "2014-07-24 18:49:37.849090"], ["value", "--- 2014-07-24 21:49:37.847848000 +03:00\n...\n"], ["var", "i18n_updated_at"]] +  (0.5ms) commit transaction + I18n::Backend::Weeler::Translation Load (0.2ms) SELECT "weeler_translations".* FROM "weeler_translations" +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.8ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.9ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (1.0ms) DELETE FROM "weeler_seos"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.9ms) DELETE FROM "weeler_translations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (1.0ms) DELETE FROM "weeler_seo_translations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (1.0ms) DELETE FROM "weeler_seos"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.9ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.9ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.7ms) DELETE FROM "weeler_seo_translations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.8ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.7ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.9ms) DELETE FROM "weeler_seo_translations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.9ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.6ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.6ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.6ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.6ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts'; +  (0.9ms) DELETE FROM "weeler_seos"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seos'; +  (0.7ms) DELETE FROM "settings"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'settings'; +  (0.8ms) DELETE FROM "weeler_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_translations'; +  (0.8ms) DELETE FROM "weeler_seo_translations"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'weeler_seo_translations'; +  (0.7ms) DELETE FROM "posts"; +  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.1ms) DELETE FROM sqlite_sequence where name = 'posts';