OSDN Git Service

fix: player insert
authoryasushiito <yas@pen-chan.jp>
Sun, 7 Jun 2015 09:26:52 +0000 (18:26 +0900)
committeryasushiito <yas@pen-chan.jp>
Sun, 7 Jun 2015 09:26:52 +0000 (18:26 +0900)
app/assets/javascripts/editor/player/panel_insert_dialog.js.coffee
app/assets/javascripts/editor/player/panel_move_dialog.js.coffee
app/assets/javascripts/i18n/translations.js
app/assets/javascripts/models/scroll_panel.js.coffee
app/assets/javascripts/views/artists/show.js.coffee
app/assets/javascripts/views/scroll_panels/new_element.js.coffee [new file with mode: 0644]
app/assets/javascripts/views/scrolls/play.js.coffee
config/locales/pettanr.ja.yml

index 0719e0e..93ec23c 100644 (file)
@@ -1,15 +1,73 @@
 class Editor.Player.PanelInsertDialog extends Editor.Dialog\r
   className: 'player-insert-dialog'\r
   \r
-  start: (panel) ->\r
-    this.$el.dialog({title: I18n.t('scroll_panels.player.dialog')})\r
-    body = new Pettanr.Views.Panel.Body({\r
-      panel: panel,\r
-      spot: null\r
+  initialize: (options) ->\r
+    super(options)\r
+    @parent = options.parent\r
+    @binder = options.binder\r
+    @target_model = options.target_model\r
+    @insert_point = options.insert_point\r
+  \r
+  render: () ->\r
+    this.$el.html('')\r
+    launcher = new Pettanr.Views[@target_model.singular()].NewElementLauncher({\r
+      parent: this, model: @target_model\r
+    })\r
+    @listenTo(launcher, 'http_get', @http_get)  # http_get func already defined\r
+    this.$el.append(launcher.render().el)\r
+    this\r
+  \r
+  start: () ->\r
+    this.$el.dialog({title: I18n.t('scroll_panels.player.insert_dialog')})\r
+    _this = this\r
+    this.$el.dialog({\r
+      autoOpen: false,\r
+      width: 750, \r
+      height: 700,\r
+      close: (ui, event) ->\r
+        _this.remove()\r
     })\r
-    @refresh(body.render())\r
     this.$el.dialog('open')\r
   \r
   stop: () ->\r
     this.$el.dialog('close')\r
   \r
+  ready: (view) ->\r
+    @listenTo(view, 'http_get', @http_get)\r
+    # @listenTo(view, 'http_post', @http_post)\r
+    @listenTo(view, 'pick', @pick)\r
+    if view['is_pickable'] and view.is_pickable()\r
+      view.add_pick(@target_model)\r
+    @refresh(view)\r
+  \r
+  pick: (item) ->\r
+    if item.item_name() == @target_model.item_name()\r
+      # Inspire\r
+    else if @target_model.is_traceable(item.item_name())\r
+      # Trace\r
+    else if item.item_name() == @target_model.pick_item_name()\r
+      # Pick  resource_picture to panel_picture\r
+      new_item = new @target_model()\r
+      new_item.set(new_item.pick(item), {silent: true})\r
+      t = if @insert_point.scroll_panel\r
+        # insert before insert_point's panel_view\r
+        @insert_point.scroll_panel.get('t')\r
+      else\r
+        # insert before appender\r
+        null\r
+      new_item.set({scroll_id: @binder.get('id'), t: t}, {silent: true})\r
+      @listenTo(new_item, 'save:success', @success)\r
+      @listenTo(new_item, 'save:fail', @fail)\r
+      new_item.save()\r
+  \r
+  success: (model, response) ->\r
+    # item is new\r
+    model.url = model.default_url()\r
+    Pettanr.cache.store(model)\r
+    @trigger('pick', model, @insert_point)\r
+  \r
+  fail: (model, response) ->\r
+    @trigger('fail', response)\r
+  \r
+  \r
+  \r
index 235845d..75a1160 100644 (file)
@@ -2,7 +2,7 @@ class Editor.Player.PanelMoveDialog extends Editor.Dialog
   className: 'player-move-dialog'\r
   \r
   start: (panel) ->\r
-    this.$el.dialog({title: I18n.t('scroll_panels.player.dialog')})\r
+    this.$el.dialog({title: I18n.t('scroll_panels.player.move_dialog')})\r
     body = new Pettanr.Views.Panel.Body({\r
       panel: panel,\r
       spot: null\r
index 7e0738f..de1d57c 100644 (file)
@@ -1,2 +1,2 @@
 var I18n = I18n || {};\r
-I18n.translations = {"en":{"date":{"formats":{"default":"%Y-%m-%d","short":"%b %d","long":"%B %d, %Y"},"day_names":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"abbr_day_names":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"month_names":[null,"January","February","March","April","May","June","July","August","September","October","November","December"],"abbr_month_names":[null,"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"order":["year","month","day"]},"time":{"formats":{"default":"%a, %d %b %Y %H:%M:%S %z","short":"%d %b %H:%M","long":"%B %d, %Y %H:%M"},"am":"am","pm":"pm"},"support":{"array":{"words_connector":", ","two_words_connector":" and ","last_word_connector":", and "}},"errors":{"format":"%{attribute} %{message}","messages":{"inclusion":"is not included in the list","exclusion":"is reserved","invalid":"is invalid","confirmation":"doesn't match confirmation","accepted":"must be accepted","empty":"can't be empty","blank":"can't be blank","too_long":"is too long (maximum is %{count} characters)","too_short":"is too short (minimum is %{count} characters)","wrong_length":"is the wrong length (should be %{count} characters)","not_a_number":"is not a number","not_an_integer":"must be an integer","greater_than":"must be greater than %{count}","greater_than_or_equal_to":"must be greater than or equal to %{count}","equal_to":"must be equal to %{count}","less_than":"must be less than %{count}","less_than_or_equal_to":"must be less than or equal to %{count}","odd":"must be odd","even":"must be even","url":"is not a valid URL","expired":"has expired, please request a new one","not_found":"not found","already_confirmed":"was already confirmed, please try signing in","not_locked":"was not locked","not_saved":{"one":"1 error prohibited this %{resource} from being saved:","other":"%{count} errors prohibited this %{resource} from being saved:"}}},"activerecord":{"errors":{"messages":{"taken":"has already been taken","record_invalid":"Validation failed: %{errors}"}}},"number":{"format":{"separator":".","delimiter":",","precision":3,"significant":false,"strip_insignificant_zeros":false},"currency":{"format":{"format":"%u%n","unit":"$","separator":".","delimiter":",","precision":2,"significant":false,"strip_insignificant_zeros":false}},"percentage":{"format":{"delimiter":""}},"precision":{"format":{"delimiter":""}},"human":{"format":{"delimiter":"","precision":3,"significant":true,"strip_insignificant_zeros":true},"storage_units":{"format":"%n %u","units":{"byte":{"one":"Byte","other":"Bytes"},"kb":"KB","mb":"MB","gb":"GB","tb":"TB"}},"decimal_units":{"format":"%n %u","units":{"unit":"","thousand":"Thousand","million":"Million","billion":"Billion","trillion":"Trillion","quadrillion":"Quadrillion"}}}},"datetime":{"distance_in_words":{"half_a_minute":"half a minute","less_than_x_seconds":{"one":"less than 1 second","other":"less than %{count} seconds"},"x_seconds":{"one":"1 second","other":"%{count} seconds"},"less_than_x_minutes":{"one":"less than a minute","other":"less than %{count} minutes"},"x_minutes":{"one":"1 minute","other":"%{count} minutes"},"about_x_hours":{"one":"about 1 hour","other":"about %{count} hours"},"x_days":{"one":"1 day","other":"%{count} days"},"about_x_months":{"one":"about 1 month","other":"about %{count} months"},"x_months":{"one":"1 month","other":"%{count} months"},"about_x_years":{"one":"about 1 year","other":"about %{count} years"},"over_x_years":{"one":"over 1 year","other":"over %{count} years"},"almost_x_years":{"one":"almost 1 year","other":"almost %{count} years"}},"prompts":{"year":"Year","month":"Month","day":"Day","hour":"Hour","minute":"Minute","second":"Seconds"}},"helpers":{"select":{"prompt":"Please select"},"submit":{"create":"Create %{model}","update":"Update %{model}","submit":"Save %{model}"},"button":{"create":"Create %{model}","update":"Update %{model}","submit":"Save %{model}"},"page_entries_info":{"one_page":{"display_entries":{"zero":"No %{entry_name} found","one":"Displaying <b>1</b> %{entry_name}","other":"Displaying <b>all %{count}</b> %{entry_name}"}},"more_pages":{"display_entries":"Displaying %{entry_name} <b>%{first}&nbsp;-&nbsp;%{last}</b> of <b>%{total}</b> in total"}}},"devise":{"failure":{"already_authenticated":"You are already signed in.","unauthenticated":"You need to sign in or sign up before continuing.","unconfirmed":"You have to confirm your account before continuing.","locked":"Your account is locked.","invalid":"Invalid email or password.","invalid_token":"Invalid authentication token.","timeout":"Your session expired, please sign in again to continue.","inactive":"Your account was not activated yet."},"sessions":{"signed_in":"Signed in successfully.","signed_out":"Signed out successfully."},"passwords":{"send_instructions":"You will receive an email with instructions about how to reset your password in a few minutes.","updated":"Your password was changed successfully. You are now signed in.","updated_not_active":"Your password was changed successfully.","send_paranoid_instructions":"If your e-mail exists on our database, you will receive a password recovery link on your e-mail"},"confirmations":{"send_instructions":"You will receive an email with instructions about how to confirm your account in a few minutes.","send_paranoid_instructions":"If your e-mail exists on our database, you will receive an email with instructions about how to confirm your account in a few minutes.","confirmed":"Your account was successfully confirmed. You are now signed in."},"registrations":{"signed_up":"Welcome! You have signed up successfully.","inactive_signed_up":"You have signed up successfully. However, we could not sign you in because your account is %{reason}.","updated":"You updated your account successfully.","destroyed":"Bye! Your account was successfully cancelled. We hope to see you again soon.","reasons":{"inactive":"inactive","unconfirmed":"unconfirmed","locked":"locked"}},"unlocks":{"send_instructions":"You will receive an email with instructions about how to unlock your account in a few minutes.","unlocked":"Your account was successfully unlocked. You are now signed in.","send_paranoid_instructions":"If your account exists, you will receive an email with instructions about how to unlock it in a few minutes."},"omniauth_callbacks":{"success":"Successfully authorized from %{kind} account.","failure":"Could not authorize you from %{kind} because \"%{reason}\"."},"mailer":{"confirmation_instructions":{"subject":"Confirmation instructions"},"reset_password_instructions":{"subject":"Reset password instructions"},"unlock_instructions":{"subject":"Unlock Instructions"}}},"views":{"pagination":{"first":"&laquo; First","last":"Last &raquo;","previous":"&lsaquo; Prev","next":"Next &rsaquo;","truncate":"&hellip;"}},"hello":"Hello world"},"ja":{"activerecord":{"models":{"user":"\u30e6\u30fc\u30b6","admin":"\u7ba1\u7406\u8005","demand_user":"\u501f\u624b","folder":"\u30d5\u30a9\u30eb\u30c0","scroll":"\u30b9\u30af\u30ed\u30fc\u30eb","scroll_panel":"\u30b9\u30af\u30b3\u30de","comic":"\u30b3\u30df\u30c3\u30af","comic_story":"\u30b3\u30df\u30b9\u30c8","story":"\u30b9\u30c8\u30fc\u30ea\u30fc","story_sheet":"\u30b9\u30c8\u7d19","sheet":"\u7528\u7d19","sheet_panel":"\u7d19\u30b3\u30de","panel":"\u30b3\u30de","panel_picture":"\u30b3\u30de\u7d75","speech_balloon":"\u30d5\u30ad\u30c0\u30b7","speech":"\u30bb\u30ea\u30d5","balloon":"\u30d5\u30ad\u30c0\u30b7\u67a0","ground_picture":"\u7d75\u5730","ground_color":"\u8272\u5730","original_picture":"\u539f\u753b","picture":"\u5b9f\u7d20\u6750","resource_picture":"\u7d20\u6750","resource_picture_picture":"\u7d20\u6750\u5b9f\u7d20\u6750","original_picture_license_group":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u9078\u629e","original_picture_license":"\u30e9\u30a4\u30bb\u30f3\u30b9\u9078\u629e","speech_balloon_template":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","writing_format":"\u8a18\u6cd5","license_group":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7","license":"\u30e9\u30a4\u30bb\u30f3\u30b9","author":"\u4f5c\u5bb6","artist":"\u7d75\u5e2b","system_picture":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf","provider":"\u8cb8\u624b","provider_status":"\u501f\u53d7\u72b6\u6cc1","demander":"\u501f\u624b","demander_status":"\u8cb8\u4e0e\u72b6\u6cc1","provider_license":"\u30e9\u30a4\u30bb\u30f3\u30b9\u5bfe\u7167\u8868","provider_artist":"\u7d75\u5e2b\u5bfe\u7167\u8868","provider_original_picture":"\u539f\u753b\u5bfe\u7167\u8868","pettanr_creative_commons_v30_licenses/attribute":"\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30b3\u30e2\u30f3\u30ba3.0","pettanr_pettan_commons_v01_licenses/attribute":"\u307a\u3063\u305f\u3093\u30b3\u30e2\u30f3\u30ba0.1","pettanr_pettan_protected_v01_licenses/attribute":"\u307a\u3063\u305f\u3093Protected0.1","pettanr_pettan_public_v01_licenses/attribute":"\u307a\u3063\u305f\u3093\u30d1\u30d6\u30ea\u30c3\u30af0.1","pettanr_public_domain_v01_licenses/attribute":"\u30d1\u30d6\u30ea\u30c3\u30af\u30c9\u30e1\u30a4\u30f3","pettanr_unknown_v01_licenses/attribute":"\u4e0d\u660e0.1"},"attributes":{"user":{"name":"\u30da\u30f3\u30cd\u30fc\u30e0","email":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","password":"\u30d1\u30b9\u30ef\u30fc\u30c9","password_confirmation":"\u78ba\u8a8d\u30d1\u30b9\u30ef\u30fc\u30c9","current_password":"\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9","remember_me":"\u6b21\u56de\u304b\u3089\u81ea\u52d5\u3067\u30ed\u30b0\u30a4\u30f3","authentication_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3"},"admin":{"email":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","password":"\u30d1\u30b9\u30ef\u30fc\u30c9","password_confirmation":"\u78ba\u8a8d\u30d1\u30b9\u30ef\u30fc\u30c9","current_password":"\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9","remember_me":"\u6b21\u56de\u304b\u3089\u81ea\u52d5\u3067\u30ed\u30b0\u30a4\u30f3","authentication_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3"},"demand_user":{"email":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","password":"\u30d1\u30b9\u30ef\u30fc\u30c9","password_confirmation":"\u78ba\u8a8d\u30d1\u30b9\u30ef\u30fc\u30c9","current_password":"\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9","remember_me":"\u6b21\u56de\u304b\u3089\u81ea\u52d5\u3067\u30ed\u30b0\u30a4\u30f3","authentication_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3"},"folder":{"name":"\u30d5\u30a9\u30eb\u30c0\u540d","controller_name":"\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u540d","action_name":"\u30a2\u30af\u30b7\u30e7\u30f3\u540d","category_id":"\u7a2e\u5225","t":"\u9806\u5e8f","parent_id":"\u89aa\u30d5\u30a9\u30eb\u30c0","lft":"\u30c4\u30ea\u30fc\u5de6","rgt":"\u30c4\u30ea\u30fc\u53f3","depth":"\u30c4\u30ea\u30fc\u6df1\u3055","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"scroll":{"title":"\u30bf\u30a4\u30c8\u30eb","description":"\u3042\u3089\u3059\u3058","visible":"\u516c\u958b","author_id":"\u4f5c\u5bb6","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"scroll_panel":{"scroll_id":"\u30b9\u30af\u30ed\u30fc\u30eb","panel_id":"\u30b3\u30de","t":"No.","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"comic":{"title":"\u30bf\u30a4\u30c8\u30eb","description":"\u3042\u3089\u3059\u3058","visible":"\u516c\u958b","author_id":"\u4f5c\u5bb6","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"comic_story":{"comic_id":"\u30b3\u30df\u30c3\u30af","story_id":"\u30b9\u30c8\u30fc\u30ea\u30fc","t":"No.","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"story":{"comic_id":"\u30b3\u30df\u30c3\u30af","title":"\u30bf\u30a4\u30c8\u30eb","description":"\u3042\u3089\u3059\u3058","visible":"\u516c\u958b","author_id":"\u4f5c\u5bb6","t":"No.","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"story_sheet":{"story_id":"\u30b9\u30c8\u30fc\u30ea\u30fc","sheet_id":"\u7528\u7d19","t":"No.","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"sheet":{"caption":"\u8981\u7d04","width":"\u5e45","height":"\u9ad8\u3055","visible":"\u516c\u958b","author_id":"\u7de8\u96c6\u8005","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"sheet_panel":{"sheet_id":"\u7528\u7d19","panel_id":"\u30b3\u30de","x":"X","y":"Y","z":"\u91cd\u306a\u308a","t":"No.","author_id":"\u7de8\u96c6\u8005","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"panel":{"width":"\u5e45","height":"\u9ad8\u3055","border":"\u67a0","x":"X","y":"Y","z":"\u91cd\u306a\u308a","caption":"\u8981\u7d04","publish":"\u516c\u958b","author_id":"\u4f5c\u5bb6","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"panel_picture":{"panel_id":"\u30b3\u30de","picture_id":"\u5b9f\u7d20\u6750","link":"\u30ea\u30f3\u30af","x":"X","y":"Y","z":"\u91cd\u306a\u308a","t":"\u8a71\u9806","width":"\u5e45","height":"\u9ad8\u3055","caption":"\u69d8\u5b50","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"speech_balloon":{"panel_id":"\u30b3\u30de","speech_balloon_template_id":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","speech_balloon_template_module_name":"\u30d5\u30ad\u30c0\u30b7\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","z":"\u91cd\u306a\u308a","t":"\u8a71\u9806","caption":"\u69d8\u5b50","speech_balloon_template_settings":"\u30d5\u30ad\u30c0\u30b7\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"speech":{"speech_balloon_id":"\u30d5\u30ad\u30c0\u30b7","speech_balloon_template_id":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","speech_balloon_template_module_name":"\u30d5\u30ad\u30c0\u30b7\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","writing_format_id":"\u8a18\u6cd5","writing_format_module_name":"\u8a18\u6cd5\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","content":"\u30bb\u30ea\u30d5","font_size":"\u57fa\u672c\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba","text_align":"\u30c6\u30ad\u30b9\u30c8\u63c3\u3048","fore_color":"\u30d5\u30a9\u30f3\u30c8\u8272","x":"X","y":"Y","width":"\u5e45","height":"\u9ad8\u3055","quotes":"\u30ab\u30ae\u30ab\u30c3\u30b3","speech_balloon_template_settings":"\u30d5\u30ad\u30c0\u30b7\u62e1\u5f35\u30c7\u30fc\u30bf","writing_format_settings":"\u8a18\u6cd5\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"balloon":{"speech_balloon_id":"\u30d5\u30ad\u30c0\u30b7","speech_balloon_template_id":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","speech_balloon_template_module_name":"\u30d5\u30ad\u30c0\u30b7\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","system_picture_id":"\u753b\u50cf","x":"X","y":"Y","width":"\u5e45","height":"\u9ad8\u3055","r":"\u89d2\u5ea6","speech_balloon_template_settings":"\u30d5\u30ad\u30c0\u30b7\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"ground_picture":{"panel_id":"\u30b3\u30de","picture_id":"\u5b9f\u7d20\u6750","repeat":"\u7e70\u308a\u8fd4\u3057","x":"X","y":"Y","z":"\u91cd\u306a\u308a","t":"\u8a71\u9806","caption":"\u69d8\u5b50","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"ground_color":{"panel_id":"\u30b3\u30de","code":"\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9","orientation":"\u65b9\u5411","xy":"\u30aa\u30d5\u30bb\u30c3\u30c8","wh":"\u30b5\u30a4\u30ba","z":"\u91cd\u306a\u308a","t":"\u8a71\u9806","caption":"\u69d8\u5b50","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"original_picture":{"ext":"\u753b\u50cf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8","width":"\u5e45","height":"\u9ad8\u3055","filesize":"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba","artist_id":"\u7d75\u5e2b","md5":"MD5","published_at":"\u516c\u958b","stopped_at":"\u505c\u6b62","uploaded_at":"\u6295\u7a3f","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"picture":{"original_picture_id":"\u539f\u753b","revision":"\u30d0\u30fc\u30b8\u30e7\u30f3","ext":"\u753b\u50cf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8","width":"\u5e45","height":"\u9ad8\u3055","filesize":"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba","md5":"MD5","artist_id":"\u7d75\u5e2b","license_id":"\u30e9\u30a4\u30bb\u30f3\u30b9","system_picture_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30de\u30fc\u30af","artist_name":"\u8457\u4f5c\u8005\u540d","license_group_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30d5\u30e9\u30b0","credit_picture_settings":"\u30af\u30ec\u30b8\u30c3\u30c8\u62e1\u5f35\u30c7\u30fc\u30bf","license_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u62e1\u5f35\u30c7\u30fc\u30bf","license_group_module_name":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","created_at":"\u516c\u958b\u65e5\u6642","updated_at":"\u516c\u958b\u65e5\u6642"},"resource_picture":{"original_picture_id":"\u539f\u753b","ext":"\u753b\u50cf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8","width":"\u5e45","height":"\u9ad8\u3055","filesize":"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba","md5":"MD5","artist_id":"\u7d75\u5e2b","license_group_id":"\u30e9\u30a4\u30bb\u30f3\u30b9","license_id":"\u30e9\u30a4\u30bb\u30f3\u30b9","system_picture_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30de\u30fc\u30af","artist_name":"\u8457\u4f5c\u8005\u540d","license_group_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30d5\u30e9\u30b0","credit_picture_settings":"\u30af\u30ec\u30b8\u30c3\u30c8\u62e1\u5f35\u30c7\u30fc\u30bf","license_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u62e1\u5f35\u30c7\u30fc\u30bf","license_group_module_name":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","picture_id":"\u5b9f\u7d20\u6750","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"resource_picture_picture":{"original_picture_id":"\u539f\u753b","resource_picture_id":"\u7d20\u6750","picture_id":"\u5b9f\u7d20\u6750","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"original_picture_license_group":{"original_picture_id":"\u539f\u753b","license_group_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"original_picture_license":{"original_picture_id":"\u539f\u753b","license_group_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7","license_id":"\u30e9\u30a4\u30bb\u30f3\u30b9","license_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u62e1\u5f35\u30c7\u30fc\u30bf","license_group_module_name":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"speech_balloon_template":{"name":"\u7ba1\u7406\u540d","module_name":"\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","caption":"\u540d\u524d","t":"\u4e26\u3073\u9806","system_picture_id":"\u30a2\u30a4\u30b3\u30f3","settings":"\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"writing_format":{"name":"\u7ba1\u7406\u540d","module_name":"\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","caption":"\u540d\u524d","t":"\u4e26\u3073\u9806","system_picture_id":"\u30a2\u30a4\u30b3\u30f3","settings":"\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"license_group":{"name":"\u7ba1\u7406\u540d","module_name":"\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","caption":"\u540d\u524d","url":"URL","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"license":{"license_group_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7","license_group_module_name":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","name":"\u7ba1\u7406\u540d","caption":"\u540d\u524d","url":"URL","system_picture_id":"\u30de\u30fc\u30af","license_group_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u62e1\u5f35\u30c7\u30fc\u30bf","credit_picture_settings":"\u30af\u30ec\u30b8\u30c3\u30c8\u5185\u753b\u50cf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"author":{"name":"\u30da\u30f3\u30cd\u30fc\u30e0","user_id":"\u30e6\u30fc\u30b6","working_panel_id":"\u3064\u304b\u3093\u3067\u3044\u308b\u30b3\u30de","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"artist":{"name":"\u30da\u30f3\u30cd\u30fc\u30e0","author_id":"\u4f5c\u5bb6","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"system_picture":{"ext":"\u753b\u50cf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8","width":"\u5e45","height":"\u9ad8\u3055","filesize":"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba","md5":"MD5","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider":{"provider_status_id":"\u501f\u53d7\u72b6\u6cc1","name":"\u7ba1\u7406\u540d","caption":"\u30b5\u30a4\u30c8\u540d","url":"\u30b5\u30a4\u30c8\u30c8\u30c3\u30d7\u30da\u30fc\u30b8url","description":"\u30b5\u30a4\u30c8\u7d39\u4ecb\u6587","demander_url":"\u501f\u624b\u30da\u30fc\u30b8url","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider_status":{"token":"\u30c8\u30fc\u30af\u30f3","receive_hour1":"\u5de1\u56de\u66421","receive_hour2":"\u5de1\u56de\u66422","received_at":"\u524d\u56de\u5de1\u56de\u65e5\u6642","stopped_at":"\u505c\u6b62\u65e5\u6642","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"demander":{"demand_user_id":"\u501f\u624b\u30a2\u30ab\u30a6\u30f3\u30c8","name":"\u30b5\u30a4\u30c8\u7ba1\u7406\u540d","caption":"\u30b5\u30a4\u30c8\u540d","url":"\u30b5\u30a4\u30c8\u30c8\u30c3\u30d7\u30da\u30fc\u30b8url","description":"\u30b5\u30a4\u30c8\u7d39\u4ecb\u6587","demander_url":"\u501f\u624b\u30da\u30fc\u30b8url","demander_status_id":"\u8cb8\u4e0e\u72b6\u6cc1","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"demander_status":{"requested_at":"\u7533\u8acb\u65e5\u6642","rejected_at":"\u5426\u6c7a\u65e5\u6642","approved_at":"\u53ef\u6c7a\u65e5\u6642","receive_hour1":"\u5de1\u56de\u66421","receive_hour2":"\u5de1\u56de\u66422","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider_license":{"provider_id":"\u8cb8\u624b","providers_license_id":"\u8cb8\u624b\u5074\u30e9\u30a4\u30bb\u30f3\u30b9","demanders_license_id":"\u501f\u624b\u5074\u30e9\u30a4\u30bb\u30f3\u30b9","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider_artist":{"provider_id":"\u8cb8\u624b","providers_artist_id":"\u8cb8\u624b\u5074\u7d75\u5e2b","demanders_artist_id":"\u501f\u624b\u5074\u7d75\u5e2b","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider_original_picture":{"created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"pettanr_creative_commons_v30_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b"},"pettanr_creative_commons_v30_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_creative_commons_v30_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","artist_url":"\u4f5c\u8005\u306e\u30db\u30fc\u30e0\u30da\u30fc\u30b8URL","source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","more_permission_url":"\u8ffd\u52a0\u7684\u8a31\u8afe\u306eURL"},"pettanr_pettan_commons_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b"},"pettanr_pettan_commons_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_pettan_commons_v01_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_pettan_protected_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_pettan_protected_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_pettan_protected_v01_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_pettan_public_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_pettan_public_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3"},"pettanr_pettan_public_v01_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_public_domain_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_public_domain_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_public_domain_v01_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","note":"\u5099\u8003"},"pettanr_unknown_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_unknown_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_unknown_v01_licenses_attribute":{"source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","note":"\u5099\u8003"},"pettanr_creative_commons_v30_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b"},"pettanr_creative_commons_v30_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_creative_commons_v30_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","artist_url":"\u4f5c\u8005\u306e\u30db\u30fc\u30e0\u30da\u30fc\u30b8URL","source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","more_permission_url":"\u8ffd\u52a0\u7684\u8a31\u8afe\u306eURL"},"pettanr_pettan_commons_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b"},"pettanr_pettan_commons_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_pettan_commons_v01_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_pettan_protected_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_pettan_protected_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_pettan_protected_v01_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_pettan_public_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_pettan_public_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3"},"pettanr_pettan_public_v01_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_public_domain_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_public_domain_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_public_domain_v01_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","note":"\u5099\u8003"},"pettanr_unknown_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_unknown_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_unknown_v01_licenses/attribute":{"source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","note":"\u5099\u8003"}},"errors":{"format":"%{attribute}%{message}","messages":{"accepted":"\u3092\u53d7\u8afe\u3057\u3066\u304f\u3060\u3055\u3044\u3002","blank":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","confirmation":"\u3068\u78ba\u8a8d\u306e\u5165\u529b\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002","empty":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","equal_to":"\u306f%{count}\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","even":"\u306f\u5076\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","exclusion":"\u306f\u4e88\u7d04\u3055\u308c\u3066\u3044\u307e\u3059\u3002","greater_than":"\u306f%{count}\u3088\u308a\u5927\u304d\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","greater_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0a\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","inclusion":"\u306f\u4e00\u89a7\u306b\u3042\u308a\u307e\u305b\u3093\u3002","invalid":"\u306f\u4e0d\u6b63\u306a\u5024\u3067\u3059\u3002","less_than":"\u306f%{count}\u3088\u308a\u5c0f\u3055\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","less_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0b\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_a_number":"\u306f\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_an_integer":"\u306f\u6574\u6570\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","odd":"\u306f\u5947\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","record_invalid":"\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 %{errors}","taken":"\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002","too_long":"\u306f%{count}\u6587\u5b57\u4ee5\u5185\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","too_short":"\u306f%{count}\u6587\u5b57\u4ee5\u4e0a\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","wrong_length":"\u306f%{count}\u6587\u5b57\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","existence":"\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002","url":"\u306furl\u306e\u66f8\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","natural_number":"\u306f1\u4ee5\u4e0a\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_zero":"\u306f0\u4ee5\u5916\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","resize":"\u306f\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","reverse":"\u306f\u53cd\u8ee2\u3067\u304d\u307e\u305b\u3093\u3002","sync_vh":"\u306f\u7e26\u6a2a\u6bd4\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","quotes_even":"\u306f\u30ab\u30c3\u30b3\u306e\u958b\u304d\u3068\u9589\u3058\u3092\u7a7a\u767d\u533a\u5207\u308a\u306e\u30da\u30a2\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","extend_settings":"\u62e1\u5f35\u30c7\u30fc\u30bf\u306e\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"},"template":{"body":"\u6b21\u306e\u9805\u76ee\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","header":{"one":"%{model}\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002","other":"%{model}\u306b%{count}\u3064\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}}}},"pettanr_creative_commons_v30_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_pettan_commons_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_pettan_protected_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_pettan_public_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_public_domain_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_unknown_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"circle_speech_balloon":{"new":null},"plain_speech_balloon":{"new":null},"square_speech_balloon":{"new":null},"pettanr_simple_format":{"new":null},"errors":{"messages":{"not_found":"\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f","already_confirmed":"\u306f\u65e2\u306b\u767b\u9332\u6e08\u307f\u3067\u3059","not_locked":"\u306f\u51cd\u7d50\u3055\u308c\u3066\u3044\u307e\u305b\u3093","accepted":"\u3092\u53d7\u8afe\u3057\u3066\u304f\u3060\u3055\u3044\u3002","blank":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","confirmation":"\u3068\u78ba\u8a8d\u306e\u5165\u529b\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002","empty":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","equal_to":"\u306f%{count}\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","even":"\u306f\u5076\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","exclusion":"\u306f\u4e88\u7d04\u3055\u308c\u3066\u3044\u307e\u3059\u3002","greater_than":"\u306f%{count}\u3088\u308a\u5927\u304d\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","greater_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0a\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","inclusion":"\u306f\u4e00\u89a7\u306b\u3042\u308a\u307e\u305b\u3093\u3002","invalid":"\u306f\u4e0d\u6b63\u306a\u5024\u3067\u3059\u3002","less_than":"\u306f%{count}\u3088\u308a\u5c0f\u3055\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","less_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0b\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_a_number":"\u306f\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_an_integer":"\u306f\u6574\u6570\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","odd":"\u306f\u5947\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","record_invalid":"\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 %{errors}","taken":"\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002","too_long":"\u306f%{count}\u6587\u5b57\u4ee5\u5185\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","too_short":"\u306f%{count}\u6587\u5b57\u4ee5\u4e0a\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","wrong_length":"\u306f%{count}\u6587\u5b57\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","existence":"\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002","url":"\u306furl\u306e\u66f8\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","natural_number":"\u306f1\u4ee5\u4e0a\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_zero":"\u306f0\u4ee5\u5916\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","resize":"\u306f\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","reverse":"\u306f\u53cd\u8ee2\u3067\u304d\u307e\u305b\u3093\u3002","sync_vh":"\u306f\u7e26\u6a2a\u6bd4\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","quotes_even":"\u306f\u30ab\u30c3\u30b3\u306e\u958b\u304d\u3068\u9589\u3058\u3092\u7a7a\u767d\u533a\u5207\u308a\u306e\u30da\u30a2\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","extend_settings":"\u62e1\u5f35\u30c7\u30fc\u30bf\u306e\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"},"format":"%{attribute}%{message}","template":{"body":"\u6b21\u306e\u9805\u76ee\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","header":{"one":"%{model}\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002","other":"%{model}\u306b%{count}\u3064\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}},"not_create":"\u304c\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002","invalid_json":"\u4e0d\u6b63\u306ajson\u30c7\u30fc\u30bf\u3067\u3059\u3002","invalid_t":"\u30b3\u30de\u8981\u7d20\u306e\u8a71\u9806\u304c\u4e0d\u6b63\u3067\u3059\u3002","not_convert":"Gif\u753b\u50cf\u3078\u306e\u30b3\u30f3\u30d0\u30fc\u30c8\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","invalid_image":"\u753b\u50cf\u3068\u3057\u3066\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},"devise":{"failure":{"unauthenticated":"\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304f\u3060\u3055\u3044\u3002","unconfirmed":"\u672c\u767b\u9332\u3092\u884c\u3063\u3066\u304f\u3060\u3055\u3044\u3002","locked":"\u3042\u306a\u305f\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u51cd\u7d50\u3055\u308c\u3066\u3044\u307e\u3059\u3002","invalid":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u304b\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u9055\u3044\u307e\u3059\u3002","invalid_token":"\u8a8d\u8a3c\u30ad\u30fc\u304c\u4e0d\u6b63\u3067\u3059\u3002","timeout":"\u30bb\u30c3\u30b7\u30e7\u30f3\u304c\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3057\u307e\u3057\u305f\u3002\u3082\u3046\u4e00\u5ea6\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304f\u3060\u3055\u3044\u3002","inactive":"\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u30a2\u30af\u30c6\u30a3\u30d9\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"},"sessions":{"signed_in":"\u30ed\u30b0\u30a4\u30f3\u3057\u307e\u3057\u305f\u3002","signed_out":"\u30ed\u30b0\u30a2\u30a6\u30c8\u3057\u307e\u3057\u305f\u3002"},"passwords":{"send_instructions":"\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u30ea\u30bb\u30c3\u30c8\u65b9\u6cd5\u3092\u6570\u5206\u4ee5\u5185\u306b\u30e1\u30fc\u30eb\u3067\u3054\u9023\u7d61\u3057\u307e\u3059\u3002","updated":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3057\u307e\u3057\u305f\u3002"},"confirmations":{"send_instructions":"\u767b\u9332\u65b9\u6cd5\u3092\u6570\u5206\u4ee5\u5185\u306b\u30e1\u30fc\u30eb\u3067\u3054\u9023\u7d61\u3057\u307e\u3059\u3002","confirmed":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002"},"registrations":{"signed_up":"\u30a2\u30ab\u30a6\u30f3\u30c8\u767b\u9332\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3057\u305f\u3002\u78ba\u8a8d\u306e\u30e1\u30fc\u30eb\u3092\u304a\u9001\u308a\u3057\u307e\u3059\u3002","updated":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002","destroyed":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002\u307e\u305f\u306e\u3054\u5229\u7528\u3092\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\u3002"},"unlocks":{"send_instructions":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u51cd\u7d50\u89e3\u9664\u65b9\u6cd5\u3092\u6570\u5206\u4ee5\u5185\u306b\u30e1\u30fc\u30eb\u3067\u3054\u9023\u7d61\u3057\u307e\u3059\u3002","unlocked":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u51cd\u7d50\u89e3\u9664\u3057\u307e\u3057\u305f\u3002"},"mailer":{"confirmation_instructions":{"subject":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u767b\u9332\u65b9\u6cd5"},"reset_password_instructions":{"subject":"\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u518d\u8a2d\u5b9a"},"unlock_instructions":{"subject":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u51cd\u7d50\u89e3\u9664"}}},"date":{"abbr_day_names":["\u65e5","\u6708","\u706b","\u6c34","\u6728","\u91d1","\u571f"],"abbr_month_names":[null,"1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"day_names":["\u65e5\u66dc\u65e5","\u6708\u66dc\u65e5","\u706b\u66dc\u65e5","\u6c34\u66dc\u65e5","\u6728\u66dc\u65e5","\u91d1\u66dc\u65e5","\u571f\u66dc\u65e5"],"formats":{"default":"%Y/%m/%d","long":"%Y\u5e74%m\u6708%d\u65e5(%a)","short":"%m/%d"},"month_names":[null,"1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"order":["year","month","day"]},"datetime":{"distance_in_words":{"about_x_hours":{"one":"\u7d041\u6642\u9593","other":"\u7d04%{count}\u6642\u9593"},"about_x_months":{"one":"\u7d041\u30f6\u6708","other":"\u7d04%{count}\u30f6\u6708"},"about_x_years":{"one":"\u7d041\u5e74","other":"\u7d04%{count}\u5e74"},"almost_x_years":{"one":"1\u5e74\u5f31","other":"%{count}\u5e74\u5f31"},"half_a_minute":"30\u79d2\u524d\u5f8c","less_than_x_minutes":{"one":"1\u5206\u4ee5\u5185","other":"%{count}\u5206\u4ee5\u5185"},"less_than_x_seconds":{"one":"1\u79d2\u4ee5\u5185","other":"%{count}\u79d2\u4ee5\u5185"},"over_x_years":{"one":"1\u5e74\u4ee5\u4e0a","other":"%{count}\u5e74\u4ee5\u4e0a"},"x_days":{"one":"1\u65e5","other":"%{count}\u65e5"},"x_minutes":{"one":"1\u5206","other":"%{count}\u5206"},"x_months":{"one":"1\u30f6\u6708","other":"%{count}\u30f6\u6708"},"x_seconds":{"one":"1\u79d2","other":"%{count}\u79d2"}},"prompts":{"day":"\u65e5","hour":"\u6642","minute":"\u5206","month":"\u6708","second":"\u79d2","year":"\u5e74"}},"helpers":{"select":{"prompt":"\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},"submit":{"create":"\u767b\u9332\u3059\u308b","submit":"\u4fdd\u5b58\u3059\u308b","update":"\u66f4\u65b0\u3059\u308b"}},"number":{"currency":{"format":{"delimiter":",","format":"%n%u","precision":0,"separator":".","significant":false,"strip_insignificant_zeros":false,"unit":"\u5186"}},"format":{"delimiter":",","precision":3,"separator":".","significant":false,"strip_insignificant_zeros":false},"human":{"decimal_units":{"format":"%n %u","units":{"billion":"\u5341\u5104","million":"\u767e\u4e07","quadrillion":"\u5343\u5146","thousand":"\u5343","trillion":"\u5146","unit":""}},"format":{"delimiter":"","precision":3,"significant":true,"strip_insignificant_zeros":true},"storage_units":{"format":"%n%u","units":{"byte":"\u30d0\u30a4\u30c8","gb":"\u30ae\u30ac\u30d0\u30a4\u30c8","kb":"\u30ad\u30ed\u30d0\u30a4\u30c8","mb":"\u30e1\u30ac\u30d0\u30a4\u30c8","tb":"\u30c6\u30e9\u30d0\u30a4\u30c8"}}},"percentage":{"format":{"delimiter":""}},"precision":{"format":{"delimiter":""}}},"support":{"array":{"last_word_connector":"\u3068","two_words_connector":"\u3068","words_connector":"\u3068"}},"time":{"am":"\u5348\u524d","formats":{"default":"%Y/%m/%d %H:%M:%S","long":"%Y\u5e74%m\u6708%d\u65e5(%a) %H\u6642%M\u5206%S\u79d2 %z","short":"%y/%m/%d %H:%M"},"pm":"\u5348\u5f8c"},"activemodel":{"errors":{"format":"%{attribute}%{message}","messages":{"accepted":"\u3092\u53d7\u8afe\u3057\u3066\u304f\u3060\u3055\u3044\u3002","blank":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","confirmation":"\u3068\u78ba\u8a8d\u306e\u5165\u529b\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002","empty":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","equal_to":"\u306f%{count}\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","even":"\u306f\u5076\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","exclusion":"\u306f\u4e88\u7d04\u3055\u308c\u3066\u3044\u307e\u3059\u3002","greater_than":"\u306f%{count}\u3088\u308a\u5927\u304d\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","greater_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0a\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","inclusion":"\u306f\u4e00\u89a7\u306b\u3042\u308a\u307e\u305b\u3093\u3002","invalid":"\u306f\u4e0d\u6b63\u306a\u5024\u3067\u3059\u3002","less_than":"\u306f%{count}\u3088\u308a\u5c0f\u3055\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","less_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0b\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_a_number":"\u306f\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_an_integer":"\u306f\u6574\u6570\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","odd":"\u306f\u5947\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","record_invalid":"\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 %{errors}","taken":"\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002","too_long":"\u306f%{count}\u6587\u5b57\u4ee5\u5185\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","too_short":"\u306f%{count}\u6587\u5b57\u4ee5\u4e0a\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","wrong_length":"\u306f%{count}\u6587\u5b57\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","existence":"\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002","url":"\u306furl\u306e\u66f8\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","natural_number":"\u306f1\u4ee5\u4e0a\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_zero":"\u306f0\u4ee5\u5916\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","resize":"\u306f\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","reverse":"\u306f\u53cd\u8ee2\u3067\u304d\u307e\u305b\u3093\u3002","sync_vh":"\u306f\u7e26\u6a2a\u6bd4\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","quotes_even":"\u306f\u30ab\u30c3\u30b3\u306e\u958b\u304d\u3068\u9589\u3058\u3092\u7a7a\u767d\u533a\u5207\u308a\u306e\u30da\u30a2\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","extend_settings":"\u62e1\u5f35\u30c7\u30fc\u30bf\u306e\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"},"template":{"body":"\u6b21\u306e\u9805\u76ee\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","header":{"one":"%{model}\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002","other":"%{model}\u306b%{count}\u3064\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}}}},"flash":{"notice":{"created":"%{model}\u304c\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f\u3002","updated":"%{model}\u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002","destroyed":"%{model}\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002","not_created":"%{model}\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","not_updated":"%{model}\u306e\u66f4\u65b0\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","not_destroyed":"%{model}\u306e\u524a\u9664\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"}},"picture_io":{"error":"\u753b\u50cf\u4fdd\u7ba1\u5eab\u3068\u306e\u624b\u7d9a\u304d\u3067\u7570\u5e38\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"},"select_items":{"form":{"space":"\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044"},"scroll":{"visible":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"comic":{"visible":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"story":{"visible":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"sheet":{"visible":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"panel":{"publish":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"ground_pictures":{"repeat":{"repeat":"\u5168\u4f53","repeat-x":"\u6a2a\u65b9\u5411","repeat-y":"\u7e26\u65b9\u5411","no-repeat":"\u306a\u3057"}},"ground_color":{"orientation":{"horizontal":"\u6a2a\u65b9\u5411","vertical":"\u7e26\u65b9\u5411"}},"speeches":{"font_size":{"ultra_small":"\u6975\u5c0f","very_small":"\u5c0f\u5c0f","small":"\u5c0f","semi_small":"\u5fae\u5c0f","normal":"\u4e26","semi_large":"\u5fae\u5927","large":"\u5927","very_large":"\u5927\u5927","ultra_large":"\u6975\u5927"},"text_align":{"none":"\u6307\u5b9a\u3057\u306a\u3044","left":"\u5de6\u5bc4\u305b","right":"\u53f3\u5bc4\u305b","center":"\u4e2d\u592e\u5bc4\u305b"}},"provider_status":{"status":{"waiting":"\u5f85\u6a5f\u4e2d","receiving":"\u7533\u8acb\u4e2d"}},"demander_status":{"status":{"waiting":"\u5f85\u6a5f\u4e2d","rejected":"\u5426\u6c7a\u30fb\u505c\u6b62\u4e2d","requesting":"\u7533\u8acb\u4e2d","approved":"\u8cb8\u4e0e\u4e2d"}}},"users":{"shared":{"signin":"\u30ed\u30b0\u30a4\u30f3","signup":"\u65b0\u898f\u5165\u4f1a","forgot":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u305f"},"signup":{"title":"\u30e6\u30fc\u30b6\u767b\u9332","signup":"\u767b\u9332\u3059\u308b"},"signin":{"title":"\u30ed\u30b0\u30a4\u30f3","signin":"\u30ed\u30b0\u30a4\u30f3"},"edit":{"title":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8a2d\u5b9a\u5909\u66f4"},"forgot":{"title":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f","reset":"\u65b0\u3057\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u767a\u884c\u3059\u308b"}},"admins":{"shared":{"signin":"\u7ba1\u7406\u8005\u30ed\u30b0\u30a4\u30f3","signup":"\u65b0\u898f\u5165\u4f1a","forgot":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u305f"},"signup":{"title":"\u7ba1\u7406\u8005\u767b\u9332","signup":"\u767b\u9332\u3059\u308b"},"signin":{"title":"\u7ba1\u7406\u8005\u30ed\u30b0\u30a4\u30f3","signin":"\u30ed\u30b0\u30a4\u30f3"},"edit":{"title":"\u7ba1\u7406\u8005\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8a2d\u5b9a\u5909\u66f4"},"forgot":{"title":"\u7ba1\u7406\u8005\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f","reset":"\u65b0\u3057\u3044\u7ba1\u7406\u8005\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u767a\u884c\u3059\u308b"}},"demand_users":{"shared":{"signin":"\u501f\u624b\u30ed\u30b0\u30a4\u30f3","signup":"\u65b0\u898f\u5165\u4f1a","forgot":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u305f"},"signup":{"title":"\u501f\u624b\u767b\u9332","signup":"\u767b\u9332\u3059\u308b"},"signin":{"title":"\u501f\u624b\u30ed\u30b0\u30a4\u30f3","signin":"\u30ed\u30b0\u30a4\u30f3"},"edit":{"title":"\u501f\u624b\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8a2d\u5b9a\u5909\u66f4"},"forgot":{"title":"\u501f\u624b\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f","reset":"\u65b0\u3057\u3044\u501f\u624b\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u767a\u884c\u3059\u308b"}},"home":{"index":{"title":"\u30db\u30fc\u30e0","updated_scroll":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u6f2b\u753b","catch":"\u3064\u304b\u3093\u3067\u3044\u308b\u30b3\u30de","used_element":"\u6700\u8fd1\u4f7f\u3063\u305f\u90e8\u54c1","updated_picture":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u753b\u50cf","author":"\u4f5c\u5bb6","artist":"\u7d75\u5e2b","not_author":"\u4f5c\u54c1\u3092\u516c\u958b\u3059\u308b\u306b\u306f\u4f5c\u5bb6\u767b\u9332","not_artist":"\u753b\u50cf\u3092\u516c\u958b\u3059\u308b\u306b\u306f\u7d75\u5e2b\u767b\u9332"},"scrolls":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b9\u30af\u30ed\u30fc\u30eb"},"scroll_panels":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b9\u30af\u30b3\u30de"},"comics":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b3\u30df\u30c3\u30af"},"comic_stories":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b3\u30df\u30b9\u30c8"},"stories":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b9\u30c8\u30fc\u30ea\u30fc"},"story_sheets":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b9\u30c8\u7d19"},"sheets":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u7528\u7d19"},"sheet_panels":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u7d19\u30b3\u30de"},"panels":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b3\u30de"},"resource_pictures":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u7d20\u6750"},"panel_pictures":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b3\u30de\u7d75"},"speech_balloons":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30d5\u30ad\u30c0\u30b7"},"balloons":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30d5\u30ad\u30c0\u30b7\u67a0"},"speeches":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30bb\u30ea\u30d5"},"ground_pictures":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u7d75\u5730"},"ground_colors":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u8272\u5730"},"configure":{"title":"\u8a2d\u5b9a","caption":"\u30a2\u30ab\u30a6\u30f3\u30c8%{email}\u306e\u8a2d\u5b9a","password_caption":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u304a\u3088\u3073\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u5909\u66f4","new_password_notice":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3057\u306a\u3044\u5834\u5408\u306f\u7a7a\u6b04\u306b\u3057\u3066\u304f\u3060\u3055\u3044","current_password_notice":"\u78ba\u8a8d\u306e\u305f\u3081\u306b\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059","change_password":"\u5909\u66f4\u3059\u308b","token_caption":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3","your_token":"\u3042\u306a\u305f\u306e\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u306f%{token}\u3067\u3059","delete_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u3092\u524a\u9664\u3059\u308b","about_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u306fWebAPI\u3092\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u4f7f\u3044\u307e\u3059","generate_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u3092\u767a\u884c\u3059\u308b","cancel_caption":"\u9000\u4f1a","cancel_account":"\u9000\u4f1a\u3059\u308b","no_author":"\u4f5c\u5bb6\u767b\u9332\u3055\u308c\u3066\u3044\u307e\u305b\u3093","about_author":"\u4f5c\u5bb6\u306b\u306a\u308b\u3068\u6f2b\u753b\u3092\u516c\u958b\u3067\u304d\u307e\u3059","no_artist":"\u7d75\u5e2b\u767b\u9332\u3055\u308c\u3066\u3044\u307e\u305b\u3093","about_artist":"\u7d75\u5e2b\u306b\u306a\u308b\u3068\u7d20\u6750\u3092\u516c\u958b\u3067\u304d\u307e\u3059"},"sign_out":{"title":"\u30ed\u30b0\u30a2\u30a6\u30c8"},"sign_in":{"title":"\u30ed\u30b0\u30a4\u30f3"}},"top":{"index":{"title":"\u8aad\u3080\u30fb\u63a2\u3059"},"metro":{"title":"\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u30a2\u30d7\u30ea\u98a8metro\u3067\u4f53\u9a13"},"user_resources":"\u767a\u8868\u4f5c\u54c1\u304b\u3089","human_resources":"\u4eba\u7269\u304b\u3089","system_resources":"\u30b7\u30b9\u30c6\u30e0\u30ea\u30bd\u30fc\u30b9\u304b\u3089","return":"\u30b7\u30f3\u30d7\u30eb\u7248\u306b\u623b\u308b"},"folders":{"root":{"title":"\u30d5\u30a9\u30eb\u30c0"},"index":{"title":"\u30d5\u30a9\u30eb\u30c0\u4e00\u89a7"},"show":{"title":"\u30d5\u30a9\u30eb\u30c0\u8a73\u7d30"},"new":{"title":"\u30d5\u30a9\u30eb\u30c0\u4f5c\u6210"},"edit":{"title":"\u30d5\u30a9\u30eb\u30c0\u5909\u66f4"},"create":{"title":"\u30d5\u30a9\u30eb\u30c0\u4f5c\u6210"},"update":{"title":"\u30d5\u30a9\u30eb\u30c0\u5909\u66f4"},"destroy":{"title":"\u30d5\u30a9\u30eb\u30c0\u524a\u9664"},"submit":{"new":"\u30d5\u30a9\u30eb\u30c0\u4f5c\u6210","edit":"\u30d5\u30a9\u30eb\u30c0\u5909\u66f4"}},"scrolls":{"scroll_panels_count":"%{c}\u30b3\u30de","index":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u4e00\u89a7","new":"\u65b0\u520a"},"show":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u8a73\u7d30","leaf":"\u30b3\u30de\u306e\u8ffd\u52a0\u3068\u4e26\u3073\u66ff\u3048"},"play":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u3092\u8aad\u3080","empty":"\u95b2\u89a7\u3067\u304d\u308b\u30b9\u30af\u30b3\u30de\u306f\u3042\u308a\u307e\u305b\u3093"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30af\u30ed\u30fc\u30eb\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u30b9\u30af\u30ed\u30fc\u30eb\u4e00\u89a7"},"new":{"title":"\u65b0\u520a\u4f5c\u6210"},"edit":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u5909\u66f4"},"create":{"title":"\u65b0\u520a\u4f5c\u6210"},"update":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u5909\u66f4"},"destroy":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u524a\u9664"},"submit":{"new":"\u65b0\u520a\u4f5c\u6210","edit":"\u30b9\u30af\u30ed\u30fc\u30eb\u5909\u66f4"}},"scroll_panels":{"index":{"title":"\u30b9\u30af\u30b3\u30de\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u30b9\u30af\u30b3\u30de\u4e00\u89a7"},"by_scroll":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u306e\u30b9\u30af\u30b3\u30de\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30af\u30b3\u30de\u4e00\u89a7"},"show":{"title":"\u30b9\u30af\u30b3\u30de\u8a73\u7d30"},"new":{"title":"\u30b9\u30af\u30b3\u30de\u8ffd\u52a0"},"edit":{"title":"\u4e26\u3073\u66ff\u3048"},"create":{"title":"\u30b9\u30af\u30b3\u30de\u8ffd\u52a0"},"update":{"title":"\u4e26\u3073\u66ff\u3048"},"destroy":{"title":"\u30b9\u30af\u30b3\u30de\u524a\u9664"},"submit":{"new":"\u30b9\u30af\u30b3\u30de\u4f5c\u6210","edit":"\u30b9\u30af\u30b3\u30de\u5909\u66f4"},"move":"\u79fb\u52d5","player":{"move":"\u9806\u5e8f\u306e\u5165\u308c\u66ff\u3048","before_insert":"\u3053\u306e\u76f4\u524d\u306b\u30b3\u30de\u3092\u633f\u5165","append":"\u30b3\u30de\u3092\u8ffd\u52a0","destroy":"\u53d6\u308a\u5916\u3059","dialog":"\u3053\u306e\u30b3\u30de\u3092\u79fb\u52d5"},"append":{"panel":"\u3053\u306e\u30b3\u30de\u3092\u8ffd\u52a0\u3059\u308b","scroll":"\u3053\u306e\u30b9\u30af\u30ed\u30fc\u30eb\u306b\u8ffd\u52a0\u3059\u308b","new_panels":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b3\u30de","fresh_panels":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b3\u30de","new_scrolls":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b9\u30af\u30ed\u30fc\u30eb","fresh_scrolls":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30af\u30ed\u30fc\u30eb"}},"comics":{"comic_stories_count":"%{c}\u8a71","index":{"title":"\u30b3\u30df\u30c3\u30af\u4e00\u89a7","new":"\u65b0\u520a"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b3\u30df\u30c3\u30af\u4e00\u89a7"},"show":{"title":"\u30b3\u30df\u30c3\u30af\u8a73\u7d30","leaf":"\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u8ffd\u52a0\u3068\u4e26\u3073\u66ff\u3048"},"play":{"title":"\u30b3\u30df\u30c3\u30af\u3092\u8aad\u3080","empty":"\u95b2\u89a7\u3067\u304d\u308b\u30b9\u30c8\u30fc\u30ea\u30fc\u306f\u3042\u308a\u307e\u305b\u3093"},"new":{"title":"\u65b0\u520a\u4f5c\u6210"},"edit":{"title":"\u30b3\u30df\u30c3\u30af\u5909\u66f4"},"create":{"title":"\u65b0\u520a\u4f5c\u6210"},"update":{"title":"\u30b3\u30df\u30c3\u30af\u5909\u66f4"},"destroy":{"title":"\u30b3\u30df\u30c3\u30af\u524a\u9664"},"submit":{"new":"\u30b3\u30df\u30c3\u30af\u4f5c\u6210","edit":"\u30b3\u30df\u30c3\u30af\u5909\u66f4"}},"comic_stories":{"index":{"title":"\u30b3\u30df\u30b9\u30c8\u4e00\u89a7"},"by_comic":{"title":"\u30b3\u30df\u30c3\u30af\u306e\u30b3\u30df\u30b9\u30c8\u4e00\u89a7"},"by_story":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u30b3\u30df\u30b9\u30c8\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b3\u30df\u30b9\u30c8\u4e00\u89a7"},"show":{"title":"\u30b3\u30df\u30b9\u30c8\u8a73\u7d30","t":"\u7b2c%{t}\u8a71"},"new":{"title":"\u30b3\u30df\u30b9\u30c8\u8ffd\u52a0"},"edit":{"title":"\u4e26\u3073\u66ff\u3048"},"create":{"title":"\u30b3\u30df\u30b9\u30c8\u8ffd\u52a0"},"update":{"title":"\u4e26\u3073\u66ff\u3048"},"destroy":{"title":"\u30b3\u30df\u30b9\u30c8\u524a\u9664"},"submit":{"new":"\u30b3\u30df\u30b9\u30c8\u4f5c\u6210","edit":"\u30b3\u30df\u30b9\u30c8\u5909\u66f4"},"move":"\u79fb\u52d5","append":{"story":"\u3053\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u8ffd\u52a0\u3059\u308b","comic":"\u3053\u306e\u30b3\u30df\u30c3\u30af\u306b\u8ffd\u52a0\u3059\u308b","new_stories":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b9\u30c8\u30fc\u30ea\u30fc","new_comics":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b3\u30df\u30c3\u30af","fresh_comics":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b3\u30df\u30c3\u30af"}},"stories":{"story_sheets_count":"%{c}P","index":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u4e00\u89a7","new":"\u65b0\u30b9\u30c8\u30fc\u30ea\u30fc"},"show":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u8a73\u7d30","leaf":"\u7528\u7d19\u306e\u8ffd\u52a0\u3068\u4e26\u3073\u66ff\u3048"},"play":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u8aad\u3080","empty":"\u95b2\u89a7\u3067\u304d\u308b\u7528\u7d19\u306f\u3042\u308a\u307e\u305b\u3093"},"by_comic":{"title":"\u30b3\u30df\u30c3\u30af\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u4e00\u89a7"},"by_sheet":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u4e00\u89a7"},"new":{"title":"\u65b0\u30b9\u30c8\u30fc\u30ea\u30fc\u4f5c\u6210"},"edit":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u5909\u66f4"},"create":{"title":"\u65b0\u30b9\u30c8\u30fc\u30ea\u30fc\u4f5c\u6210"},"update":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u5909\u66f4"},"destroy":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u524a\u9664"},"submit":{"new":"\u30b9\u30c8\u30fc\u30ea\u30fc\u4f5c\u6210","edit":"\u30b9\u30c8\u30fc\u30ea\u30fc\u5909\u66f4"},"move":"\u79fb\u52d5"},"story_sheets":{"index":{"title":"\u30b9\u30c8\u7d19\u4e00\u89a7"},"by_story":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u30b9\u30c8\u7d19\u4e00\u89a7"},"by_sheet":{"title":"\u7528\u7d19\u306e\u30b9\u30c8\u7d19\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30c8\u7d19\u4e00\u89a7"},"show":{"title":"\u30b9\u30c8\u7d19\u8a73\u7d30"},"new":{"title":"\u30b9\u30c8\u7d19\u8ffd\u52a0"},"edit":{"title":"\u4e26\u3073\u66ff\u3048"},"create":{"title":"\u30b9\u30c8\u7d19\u8ffd\u52a0"},"update":{"title":"\u4e26\u3073\u66ff\u3048"},"destroy":{"title":"\u30b9\u30c8\u7d19\u524a\u9664"},"submit":{"new":"\u30b9\u30c8\u7d19\u4f5c\u6210","edit":"\u30b9\u30c8\u7d19\u5909\u66f4"},"move":"\u79fb\u52d5","append":{"sheet":"\u3053\u306e\u7528\u7d19\u3092\u8ffd\u52a0\u3059\u308b","story":"\u3053\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u306b\u8ffd\u52a0\u3059\u308b","new_sheets":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u7528\u7d19","new_stories":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b9\u30c8\u30fc\u30ea\u30fc","fresh_stories":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30c8\u30fc\u30ea\u30fc"}},"sheets":{"index":{"title":"\u7528\u7d19\u4e00\u89a7","new":"\u65b0\u7d19"},"show":{"title":"\u7528\u7d19\u8a73\u7d30","copy":"\u7528\u7d19\u3092\u30b3\u30d4\u30fc\u3057\u305f\u3044","inspire":"\u30a4\u30f3\u30b9\u30d1\u30a4\u30e4"},"play":{"title":"\u7528\u7d19\u3092\u8aad\u3080","empty":"\u95b2\u89a7\u3067\u304d\u308b\u30b3\u30de\u306f\u3042\u308a\u307e\u305b\u3093"},"by_story":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u7528\u7d19\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u7528\u7d19\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u7528\u7d19\u4e00\u89a7"},"new":{"title":"\u7528\u7d19\u4f5c\u6210"},"edit":{"title":"\u7528\u7d19\u5909\u66f4"},"create":{"title":"\u7528\u7d19\u4f5c\u6210"},"update":{"title":"\u7528\u7d19\u5909\u66f4"},"destroy":{"title":"\u7528\u7d19\u524a\u9664"},"submit":{"new":"\u7528\u7d19\u4f5c\u6210","edit":"\u7528\u7d19\u5909\u66f4"},"hidden":"\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093","create_from_json":"json\u30c7\u30fc\u30bf\u304b\u3089\u30b3\u30de\u4f5c\u6210\u3059\u308b"},"sheet_panels":{"index":{"title":"\u7d19\u30b3\u30de\u4e00\u89a7"},"by_sheet":{"title":"\u7528\u7d19\u306e\u7d19\u30b3\u30de\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u7d19\u30b3\u30de\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u7d19\u30b3\u30de\u4e00\u89a7"},"show":{"title":"\u7d19\u30b3\u30de\u8a73\u7d30"},"new":{"title":"\u7d19\u30b3\u30de\u8ffd\u52a0"},"edit":{"title":"\u4e26\u3073\u66ff\u3048"},"create":{"title":"\u7d19\u30b3\u30de\u8ffd\u52a0"},"update":{"title":"\u4e26\u3073\u66ff\u3048"},"destroy":{"title":"\u7d19\u30b3\u30de\u524a\u9664"},"submit":{"new":"\u7d19\u30b3\u30de\u4f5c\u6210","edit":"\u7d19\u30b3\u30de\u5909\u66f4"},"move":"\u79fb\u52d5","append":{"panel":"\u3053\u306e\u30b3\u30de\u3092\u8ffd\u52a0\u3059\u308b","sheet":"\u3053\u306e\u7528\u7d19\u306b\u8ffd\u52a0\u3059\u308b","new_panels":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b3\u30de","new_sheets":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u7528\u7d19","fresh_sheets":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7528\u7d19"}},"panels":{"index":{"title":"\u30b3\u30de\u4e00\u89a7"},"by_scroll":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u306e\u30b3\u30de\u4e00\u89a7"},"by_sheet":{"title":"\u7528\u7d19\u306e\u30b3\u30de\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b3\u30de\u4e00\u89a7"},"by_speech_balloon_template":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u30b3\u30de\u4e00\u89a7"},"show":{"title":"\u30b3\u30de\u8a73\u7d30","copy":"\u30b3\u30de\u3092\u30b3\u30d4\u30fc\u3057\u305f\u3044","inspire":"\u30a4\u30f3\u30b9\u30d1\u30a4\u30e4"},"new":{"title":"\u30b3\u30de\u4f5c\u6210"},"edit":{"title":"\u30b3\u30de\u7de8\u96c6"},"create":{"title":"\u30b3\u30de\u4f5c\u6210"},"update":{"title":"\u30b3\u30de\u7de8\u96c6"},"destroy":{"title":"\u30b3\u30de\u524a\u9664"},"submit":{"new":"\u30b3\u30de\u4f5c\u6210\u3059\u308b","edit":"\u30b3\u30de\u5909\u66f4\u3059\u308b"},"create_from_json":"json\u30c7\u30fc\u30bf\u304b\u3089\u30b3\u30de\u4f5c\u6210\u3059\u308b","element_copy":"\u3064\u304b\u3093\u3067\u3044\u308b\u30b3\u30de\u306b\u30b3\u30d4\u30fc\u3057\u305f\u3044","inspire":"\u30a4\u30f3\u30b9\u30d1\u30a4\u30e4","filer":"\u30d5\u30a1\u30a4\u30e9\u30fc\u3067\u8868\u793a\u3059\u308b","hidden":"\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093","empty":"\u95b2\u89a7\u3067\u304d\u308b\u30b3\u30de\u306f\u3042\u308a\u307e\u305b\u3093"},"panel_pictures":{"index":{"title":"\u30b3\u30de\u7d75\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u30b3\u30de\u7d75\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b3\u30de\u7d75\u4e00\u89a7"},"show":{"title":"\u30b3\u30de\u7d75\u8a73\u7d30"},"new":{"title":"\u30b3\u30de\u7d75\u4f5c\u6210"},"edit":{"title":"\u30b3\u30de\u7d75\u7de8\u96c6"},"create":{"title":"\u30b3\u30de\u7d75\u4f5c\u6210"},"update":{"title":"\u30b3\u30de\u7d75\u7de8\u96c6"},"destroy":{"title":"\u30b3\u30de\u7d75\u524a\u9664"},"submit":{"new":"\u30b3\u30de\u7d75\u4f5c\u6210\u3059\u308b","edit":"\u30b3\u30de\u7d75\u5909\u66f4\u3059\u308b"},"resource_picture":"\u8ffd\u52a0\u3059\u308b\u7d20\u6750","panel_picture":"\u5909\u66f4\u3059\u308b\u30b3\u30de\u7d75"},"speech_balloons":{"index":{"title":"\u30d5\u30ad\u30c0\u30b7\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u30d5\u30ad\u30c0\u30b7\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30d5\u30ad\u30c0\u30b7\u4e00\u89a7"},"by_speech_balloon_template":{"title":"\u30d5\u30ad\u30c0\u30b7\u306e\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4e00\u89a7"},"show":{"title":"\u30d5\u30ad\u30c0\u30b7\u8a73\u7d30"},"new":{"title":"\u30d5\u30ad\u30c0\u30b7\u4f5c\u6210"},"edit":{"title":"\u30d5\u30ad\u30c0\u30b7\u7de8\u96c6"},"create":{"title":"\u30d5\u30ad\u30c0\u30b7\u4f5c\u6210"},"update":{"title":"\u30d5\u30ad\u30c0\u30b7\u7de8\u96c6"},"destroy":{"title":"\u30d5\u30ad\u30c0\u30b7\u524a\u9664"},"submit":{"new":"\u30d5\u30ad\u30c0\u30b7\u4f5c\u6210\u3059\u308b","edit":"\u30d5\u30ad\u30c0\u30b7\u5909\u66f4\u3059\u308b"},"create_speech_balloon":"\u8ffd\u52a0\u3059\u308b\u30d5\u30ad\u30c0\u30b7","update_speech_balloon":"\u5909\u66f4\u3059\u308b\u30d5\u30ad\u30c0\u30b7"},"speeches":{"index":{"title":"\u30bb\u30ea\u30d5\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30bb\u30ea\u30d5\u4e00\u89a7"},"show":{"title":"\u30bb\u30ea\u30d5\u8a73\u7d30"},"submit":{"new":"\u30bb\u30ea\u30d5\u4f5c\u6210\u3059\u308b","edit":"\u30bb\u30ea\u30d5\u5909\u66f4\u3059\u308b"}},"balloons":{"index":{"title":"\u30d5\u30ad\u30c0\u30b7\u67a0\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30d5\u30ad\u30c0\u30b7\u67a0\u4e00\u89a7"},"show":{"title":"\u30d5\u30ad\u30c0\u30b7\u67a0\u8a73\u7d30"},"submit":{"new":"\u30d5\u30ad\u30c0\u30b7\u67a0\u4f5c\u6210\u3059\u308b","edit":"\u30d5\u30ad\u30c0\u30b7\u67a0\u5909\u66f4\u3059\u308b"}},"ground_pictures":{"index":{"title":"\u7d75\u5730\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u7d75\u5730\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u7d75\u5730\u4e00\u89a7"},"show":{"title":"\u7d75\u5730\u8a73\u7d30"},"new":{"title":"\u7d75\u5730\u4f5c\u6210"},"edit":{"title":"\u7d75\u5730\u7de8\u96c6"},"create":{"title":"\u7d75\u5730\u4f5c\u6210"},"update":{"title":"\u7d75\u5730\u7de8\u96c6"},"destroy":{"title":"\u7d75\u5730\u524a\u9664"},"submit":"\u4f5c\u6210\u3059\u308b","create_ground_picture":"\u8ffd\u52a0\u3059\u308b\u7d75\u5730","update_ground_picture":"\u5909\u66f4\u3059\u308b\u7d75\u5730"},"ground_colors":{"index":{"title":"\u8272\u5730\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u8272\u5730\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u8272\u5730\u4e00\u89a7"},"show":{"title":"\u8272\u5730\u8a73\u7d30"},"new":{"title":"\u8272\u5730\u4f5c\u6210"},"edit":{"title":"\u8272\u5730\u7de8\u96c6"},"create":{"title":"\u8272\u5730\u4f5c\u6210"},"update":{"title":"\u8272\u5730\u7de8\u96c6"},"destroy":{"title":"\u8272\u5730\u524a\u9664"},"submit":"\u4f5c\u6210\u3059\u308b","create_color":"\u8ffd\u52a0\u3059\u308b\u8272\u5730","update_color":"\u5909\u66f4\u3059\u308b\u8272\u5730"},"original_pictures":{"index":{"title":"\u539f\u753b\u4e00\u89a7","history":"\u5c65\u6b74","status":"\u72b6\u614b","stop":"\u505c\u6b62\u3059\u308b","destroy":"\u524a\u9664\u3059\u308b"},"show":{"title":"\u539f\u753b\u8a73\u7d30","select_license":"\u753b\u50cf\u306e\u516c\u958b","select":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u9078\u629e\u30da\u30fc\u30b8\u3078","replace_picture":"\u753b\u50cf\u306e\u66f4\u65b0","replace":"\u753b\u50cf\u3092\u6539\u8a02\u3059\u308b","history":"\u516c\u958b\u5c65\u6b74"},"new":{"title":"\u539f\u753b\u6295\u7a3f"},"create":{"title":"\u539f\u753b\u6295\u7a3f"},"edit":{"title":"\u539f\u753b\u6539\u8a02"},"update":{"title":"\u539f\u753b\u6539\u8a02"},"destroy":{"title":"\u539f\u753b\u524a\u9664"},"history":{"title":"\u516c\u958b\u5c65\u6b74"},"upload":"\u6295\u7a3f\u3059\u308b","unpublished":"\u672a\u516c\u958b","stopped":"\u505c\u6b62\u4e2d","unlicensed":"\u30e9\u30a4\u30bb\u30f3\u30b9\u5f85\u3061","published":"\u516c\u958b\u4e2d","exist":{"announce":"\u3053\u306e\u753b\u50cf\u306f\u65e2\u306b\u516c\u958b\u3055\u308c\u3066\u3044\u307e\u3059","status":"\u72b6\u614b","head":"\u516c\u958b\u4e2d","tail":"\u5ec3\u76e4","disable":"\u505c\u6b62\u4e2d"},"submit":{"new":"\u6295\u7a3f\u3059\u308b"}},"pictures":{"index":{"title":"\u5b9f\u7d20\u6750\u4e00\u89a7"},"show":{"title":"\u5b9f\u7d20\u6750\u8a73\u7d30","announce":{"disable":"\u3053\u306e\u7d20\u6750\u306f\u914d\u5e03\u3092\u4e2d\u6b62\u3057\u3066\u3044\u307e\u3059\u3002\u7d20\u6750\u3068\u3057\u3066\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002","head":"\u7d20\u6750\u3068\u3057\u3066\u5229\u7528\u3067\u304d\u307e\u3059\u3002","tail":"\u3053\u306e\u753b\u50cf\u306f\u65e2\u306b\u6539\u8a02\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u7d20\u6750\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u306a\u3089\u3001\u3053\u3061\u3089(\u6700\u65b0\u7248)\u304c\u5229\u7528\u3067\u304d\u307e\u3059\u3002","owner":"\u3042\u306a\u305f\u306e\u753b\u50cf\u3067\u3059\u3002\u539f\u753b\u3092\u7ba1\u7406\u3059\u308b\u306a\u3089\u3001\u3053\u3061\u3089\u3092\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002","destroyed":"\u3053\u306e\u7d20\u6750\u306f\u524a\u9664\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u7d20\u6750\u3068\u3057\u3066\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002"}},"md5":{"title":"\u5b9f\u7d20\u6750MD5\u691c\u7d22\u4e00\u89a7"},"credit":{"title":"\u30af\u30ec\u30b8\u30c3\u30c8"}},"resource_pictures":{"index":{"title":"\u7d20\u6750\u4e00\u89a7"},"by_artist":{"title":"\u7d75\u5e2b\u306e\u7d20\u6750\u4e00\u89a7"},"by_license_group":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u7d20\u6750\u4e00\u89a7"},"by_license":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u7d20\u6750\u4e00\u89a7"},"show":{"title":"\u7d20\u6750\u8a73\u7d30"},"new":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u6700\u7d42\u78ba\u8a8d)","publish":"\u516c\u958b\u3059\u308b"},"create":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u6700\u7d42\u78ba\u8a8d)"},"destroy":{"title":"\u7d20\u6750\u524a\u9664"},"add_to_panel_for_panel_picture":"\u3053\u306e\u7d20\u6750\u3092\u3064\u304b\u3093\u3060\u30b3\u30de\u306b\u30b3\u30de\u7d75\u3068\u3057\u3066\u8ffd\u52a0\u3059\u308b","add_to_panel_for_ground_picture":"\u3053\u306e\u7d20\u6750\u3092\u3064\u304b\u3093\u3060\u30b3\u30de\u306b\u7d75\u5730\u3068\u3057\u3066\u8ffd\u52a0\u3059\u308b"},"resource_picture_pictures":{"index":{"title":"\u7d20\u6750\u5b9f\u7d20\u6750\u4e00\u89a7"},"show":{"title":"\u7d20\u6750\u5b9f\u7d20\u6750\u8a73\u7d30"},"by_original_picture":{"title":"\u539f\u753b\u306e\u7d20\u6750\u5b9f\u7d20\u6750\u4e00\u89a7"},"by_resource_picture":{"title":"\u7d20\u6750\u306e\u7d20\u6750\u5b9f\u7d20\u6750\u4e00\u89a7"},"by_picture":{"title":"\u5b9f\u7d20\u6750\u306e\u7d20\u6750\u5b9f\u7d20\u6750\u4e00\u89a7"}},"original_picture_license_groups":{"new":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u306e\u9078\u629e)","no_blank":"\u5fc5\u9808\u9805\u76ee"},"create":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u306e\u9078\u629e)"},"submit":{"new":"\u6b21\u3078"}},"original_picture_licenses":{"new":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","no_blank":"\u5fc5\u9808\u9805\u76ee"},"create":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)"},"submit":{"new":"\u6b21\u3078"}},"speech_balloon_templates":{"index":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4e00\u89a7"},"by_panel":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u30b3\u30de\u4e00\u89a7"},"by_system_picture":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u306e\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4e00\u89a7"},"show":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u8a73\u7d30"},"new":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4f5c\u6210"},"edit":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u7de8\u96c6"},"create":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4f5c\u6210"},"update":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u7de8\u96c6"},"destroy":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u524a\u9664"},"submit":{"new":"\u4f5c\u6210\u3059\u308b","edit":"\u5909\u66f4\u3059\u308b"},"add_to_panel":"\u3053\u306e\u30d5\u30ad\u30c0\u30b7\u3092\u3064\u304b\u3093\u3060\u30b3\u30de\u306b\u8ffd\u52a0\u3059\u308b"},"writing_formats":{"index":{"title":"\u8a18\u6cd5\u4e00\u89a7"},"show":{"title":"\u8a18\u6cd5\u8a73\u7d30"},"new":{"title":"\u8a18\u6cd5\u4f5c\u6210"},"edit":{"title":"\u8a18\u6cd5\u7de8\u96c6"},"create":{"title":"\u8a18\u6cd5\u4f5c\u6210"},"update":{"title":"\u8a18\u6cd5\u7de8\u96c6"},"destroy":{"title":"\u8a18\u6cd5\u524a\u9664"},"submit":{"new":"\u4f5c\u6210\u3059\u308b","edit":"\u5909\u66f4\u3059\u308b"}},"license_groups":{"index":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u4e00\u89a7"},"licenses":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"show":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u8a73\u7d30"},"new":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u4f5c\u6210"},"edit":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u7de8\u96c6"},"create":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u4f5c\u6210"},"update":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u7de8\u96c6"},"destroy":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u524a\u9664"},"submit":{"new":"\u4f5c\u6210\u3059\u308b","edit":"\u5909\u66f4\u3059\u308b"}},"licenses":{"index":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"resource_pictures":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u7d20\u6750\u4e00\u89a7"},"by_license_group":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"by_system_picture":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"show":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u8a73\u7d30"},"search":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u691c\u7d22"},"new":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u4f5c\u6210"},"edit":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u7de8\u96c6"},"create":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u4f5c\u6210"},"update":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u7de8\u96c6"},"destroy":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u524a\u9664"},"submit":{"new":"\u4f5c\u6210\u3059\u308b","edit":"\u5909\u66f4\u3059\u308b"}},"authors":{"index":{"title":"\u4f5c\u5bb6\u4e00\u89a7"},"show":{"title":"\u4f5c\u5bb6\u8a73\u7d30","to_scrolls":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30af\u30ed\u30fc\u30eb","to_scroll_panels":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30af\u30b3\u30de","to_comics":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b3\u30df\u30c3\u30af","to_comic_stories":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b3\u30df\u30b9\u30c8","to_stories":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30c8\u30fc\u30ea\u30fc","to_story_sheets":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30c8\u7d19","to_sheets":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7528\u7d19","to_sheet_panels":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7d19\u30b3\u30de","to_panels":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b3\u30de","to_panel_pictures":"\u6700\u8fd1\u30b3\u30de\u3067\u4f7f\u3063\u305f\u30b3\u30de\u7d75","to_speech_balloons":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30d5\u30ad\u30c0\u30b7","to_ground_pictures":"\u6700\u8fd1\u30b3\u30de\u3067\u4f7f\u3063\u305f\u7d75\u5730","to_ground_colors":"\u6700\u8fd1\u30b3\u30de\u3067\u4f7f\u3063\u305f\u8272\u5730"},"new":{"title":"\u4f5c\u5bb6\u767b\u9332","announce":"\u4f5c\u5bb6\u767b\u9332\u3057\u3066\u304f\u3060\u3055\u3044"},"edit":{"title":"\u4f5c\u5bb6\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u7de8\u96c6"},"create":{"title":"\u4f5c\u5bb6\u767b\u9332"},"update":{"title":"\u4f5c\u5bb6\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u7de8\u96c6"},"destroy":{"title":"\u4f11\u7b46"},"submit":{"new":"\u767b\u9332","edit":"\u5909\u66f4"}},"artists":{"index":{"title":"\u7d75\u5e2b\u4e00\u89a7"},"show":{"title":"\u7d75\u5e2b\u8a73\u7d30","to_resource_pictures":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7d20\u6750"},"resource_pictures":{"title":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7d20\u6750"},"new":{"title":"\u7d75\u5e2b\u767b\u9332"},"edit":{"title":"\u7d75\u5e2b\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u7de8\u96c6"},"create":{"title":"\u7d75\u5e2b\u767b\u9332"},"update":{"title":"\u7d75\u5e2b\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u7de8\u96c6"},"destroy":{"title":"\u6d3b\u52d5\u505c\u6b62"},"submit":{"new":"\u767b\u9332","edit":"\u5909\u66f4"}},"system_pictures":{"index":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u4e00\u89a7"},"speech_balloon_templates":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u306e\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4e00\u89a7"},"licenses":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"show":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u8a73\u7d30"}},"provider_sources":{"index":{"title":"\u8cb8\u624b\u6587\u732e\u4e00\u89a7","url":"\u8cb8\u624b\u6587\u732eurl","submit":"\u30a4\u30f3\u30dd\u30fc\u30c8"},"import":{"title":"\u8cb8\u624b\u6587\u732e\u306e\u30a4\u30f3\u30dd\u30fc\u30c8","result":"\u4ef6\u306e\u8cb8\u624b\u6587\u732e\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u307e\u3057\u305f\u3002","ok":"\u3053\u306e\u8cb8\u624b\u6587\u732e\u306f\u6b63\u5e38\u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3057\u305f\u3002","ok_but":"\u3053\u306e\u8cb8\u624b\u6587\u732e\u3067\u30a4\u30f3\u30dd\u30fc\u30c8\u3067\u304d\u306a\u304b\u3063\u305f\u8cb8\u624b\u304c\u3042\u308a\u307e\u3059","ok_reason":"\u8cb8\u624b\u6587\u732e\u304c\u58ca\u308c\u3066\u3044\u308b\u3001\u30b5\u30fc\u30d0\u306e\u8a2d\u5b9a\u304c\u6b63\u3057\u304f\u306a\u3044\u3001\u306a\u3069\u306e\u7406\u7531\u304c\u8003\u3048\u3089\u308c\u307e\u3059\u3002","ng":"\u8cb8\u624b\u6587\u732e\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","ng_reason":"\u8cb8\u624b\u6587\u732e\u304c\u306a\u3044\u3001\u8cb8\u624b\u6587\u732e\u3092\u7ba1\u7406\u3057\u3066\u3044\u308b\u30b5\u30fc\u30d0\u304c\u5fdc\u7b54\u3057\u306a\u3044\u3001\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3055\u308c\u3066\u3044\u306a\u3044\u3001\u306a\u3069\u306e\u7406\u7531\u304c\u8003\u3048\u3089\u308c\u307e\u3059\u3002","to_providers":"\u8cb8\u624b\u3092\u4e00\u89a7\u3059\u308b","to_provider_sources":"\u8cb8\u624b\u6587\u732e\u4e00\u89a7\u3078\u623b\u308b"}},"providers":{"index":{"title":"\u8cb8\u624b\u4e00\u89a7","submit":"\u30a4\u30f3\u30dd\u30fc\u30c8"},"show":{"title":"\u8cb8\u624b\u8a73\u7d30","user_open":"\u30b5\u30a4\u30c8\u3092\u958b\u304f","demander_open":"\u8cb8\u624b\u3092\u958b\u304f","to_provider_status":"\u501f\u53d7\u72b6\u6cc1","destroy":"\u8cb8\u624b\u3092\u524a\u9664\u3059\u308b"},"new":{"title":"\u8cb8\u624b\u767b\u9332"},"edit":{"title":"\u8cb8\u624b\u7de8\u96c6"},"status":"\u72b6\u614b","open":"\u958b\u304f","wait":"\u5f85\u6a5f\u4e2d\u306e\u8cb8\u624b\u3060\u3051\u3092\u8868\u793a\u3059\u308b","all":"\u3059\u3079\u3066\u306e\u8cb8\u624b\u3092\u8868\u793a\u3059\u308b","to_provider_status":"\u501f\u53d7\u72b6\u6cc1\u306b\u5207\u308a\u66ff\u3048\u308b"},"provider_statuses":{"index":{"title":"\u501f\u53d7\u72b6\u6cc1\u4e00\u89a7"},"show":{"title":"\u501f\u53d7\u72b6\u6cc1\u8a73\u7d30","user_open":"\u30b5\u30a4\u30c8\u3092\u958b\u304f","demander_open":"\u30b5\u30a4\u30c8\u306e\u501f\u624b\u5411\u3051\u30da\u30fc\u30b8\u3092\u958b\u304f","to_provider":"\u8cb8\u624b","receive_announce":"\u501f\u53d7\u3059\u308b\u306b\u306f\u501f\u624b\u3068\u306a\u3063\u3066\u501f\u53d7\u7533\u8acb\u3059\u308b\u3002","receive_start":"\u3053\u306e\u8cb8\u624b\u304b\u3089\u306e\u501f\u53d7\u3092\u958b\u59cb\u3059\u308b","receive_stop":"\u501f\u53d7\u3092\u505c\u6b62\u3059\u308b","import":"\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b","licenses_import":"\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b","artists_import":"\u7d75\u5e2b\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b","original_pictures_import":"\u7d20\u6750\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b"},"new":{"title":"\u501f\u53d7\u72b6\u6cc1\u767b\u9332"},"edit":{"title":"\u501f\u53d7\u72b6\u6cc1\u7de8\u96c6"},"create":{"title":"\u501f\u53d7\u72b6\u6cc1\u767b\u9332"},"update":{"title":"\u501f\u53d7\u72b6\u6cc1\u7de8\u96c6"},"licenses_import":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30a4\u30f3\u30dd\u30fc\u30c8","success":"\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f","fail":"\u6b21\u306e\u30e9\u30a4\u30bb\u30f3\u30b9(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u72b6\u6cc1\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","to_show":"\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b"},"artists_import":{"title":"\u7d75\u5e2b\u30a4\u30f3\u30dd\u30fc\u30c8","success":"\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f","fail":"\u6b21\u306e\u7d75\u5e2b(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002","to_show":"\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b"},"original_pictures_import":{"title":"\u539f\u753b\u30a4\u30f3\u30dd\u30fc\u30c8","success":"\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f","fail":"\u6b21\u306e\u539f\u753b(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002","to_show":"\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b"},"pictures_import":{"fail":"\u6b21\u306e\u5b9f\u7d20\u6750(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002"},"resource_pictures_import":{"fail":"\u6b21\u306e\u7d20\u6750(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002"},"import":{"title":"\u30a4\u30f3\u30dd\u30fc\u30c8","success":"\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f","to_show":"\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b"},"status":"\u72b6\u614b","open":"\u958b\u304f","to_provider":"\u8cb8\u624b\u306b\u5207\u308a\u66ff\u3048\u308b","wait":"\u5f85\u6a5f\u4e2d\u306e\u8cb8\u624b\u306e\u501f\u53d7\u72b6\u6cc1\u3060\u3051\u3092\u8868\u793a\u3059\u308b","all":"\u3059\u3079\u3066\u306e\u8cb8\u624b\u306e\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b","flash":{"notice":{"created":"\u501f\u53d7\u3092\u958b\u59cb\u3057\u307e\u3057\u305f\u3002","not_created":"\u501f\u53d7\u3092\u958b\u59cb\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002","stopped":"\u501f\u53d7\u3092\u505c\u6b62\u3057\u307e\u3057\u305f\u3002","not_stopped":"\u501f\u53d7\u3092\u505c\u6b62\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"}}},"demanders":{"index":{"title":"\u501f\u624b\u4e00\u89a7","to_show":"\u30b5\u30a4\u30c8\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u8868\u793a\u3059\u308b","request":"\u3053\u306e\u8cb8\u624b\u306b\u501f\u53d7\u7533\u8acb\u3059\u308b","stop":"\u501f\u53d7\u3092\u4e2d\u6b62\u3059\u308b"},"show":{"title":"\u501f\u624b\u8a73\u7d30"},"new":{"title":"\u501f\u624b\u767b\u9332"},"edit":{"title":"\u501f\u624b\u7de8\u96c6"},"create":{"title":"\u501f\u624b\u767b\u9332"},"update":{"title":"\u501f\u624b\u7de8\u96c6"},"destroy":{"title":"\u9000\u4f1a"},"status":"\u72b6\u614b","flash":{"notice":{"not_found":"\u30b5\u30a4\u30c8\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u767b\u9332\u3057\u3066\u304f\u3060\u3055\u3044\u3002","requested":"\u501f\u53d7\u7533\u8acb\u3057\u307e\u3057\u305f\u3002","not_requested":"\u501f\u53d7\u7533\u8acb\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002","stopped":"\u501f\u53d7\u3092\u505c\u6b62\u3057\u307e\u3057\u305f\u3002","not_stopped":"\u501f\u53d7\u3092\u505c\u6b62\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"}}},"demander_statuses":{"index":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u4e00\u89a7"},"show":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u8a73\u7d30","demander_open":"\u30b5\u30a4\u30c8\u3092\u958b\u304f","approve_announce":"\u501f\u53d7\u7533\u8acb\u306b\u5bfe\u3057\u3066\u8fd4\u7b54\u3057\u3066\u304f\u3060\u3055\u3044\u3002","approve":"\u3053\u306e\u501f\u624b\u306b\u8cb8\u4e0e\u3092\u958b\u59cb\u3059\u308b","reject":"\u3053\u306e\u501f\u624b\u306b\u306f\u8cb8\u4e0e\u3057\u306a\u3044","stop":"\u3053\u306e\u501f\u624b\u306e\u8cb8\u4e0e\u3092\u505c\u6b62\u3059\u308b","reapprove":"\u3053\u306e\u501f\u624b\u306e\u5426\u6c7a\u3092\u8986\u3057\u3066\u8cb8\u4e0e\u3059\u308b"},"new":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u767b\u9332"},"edit":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u7de8\u96c6"},"create":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u767b\u9332"},"update":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u7de8\u96c6"},"status":"\u72b6\u614b","open":"\u958b\u304f","wait":"\u7533\u8acb\u4e2d\u306e\u501f\u624b\u306e\u8cb8\u4e0e\u72b6\u6cc1\u3060\u3051\u3092\u8868\u793a\u3059\u308b","all":"\u3059\u3079\u3066\u306e\u501f\u624b\u306e\u8cb8\u4e0e\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b","flash":{"notice":{"rejected":"\u8cb8\u4e0e\u3092\u5426\u6c7a\u3057\u307e\u3057\u305f\u3002","not_rejected":"\u8cb8\u4e0e\u3092\u5426\u6c7a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002","approved":"\u8cb8\u4e0e\u3092\u627f\u8a8d\u3057\u307e\u3057\u305f\u3002","not_approved":"\u8cb8\u4e0e\u3092\u627f\u8a8d\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"}}},"provider_licenses":{"index":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u5bfe\u7167\u8868\u4e00\u89a7"},"show":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u5bfe\u7167\u8868\u8a73\u7d30"}},"provider_artists":{"index":{"title":"\u7d75\u5e2b\u5bfe\u7167\u8868\u4e00\u89a7"},"show":{"title":"\u7d75\u5e2b\u5bfe\u7167\u8868\u8a73\u7d30"}},"provider_original_pictures":{"index":{"title":"\u539f\u753b\u5bfe\u7167\u8868\u4e00\u89a7"},"show":{"title":"\u539f\u753b\u5bfe\u7167\u8868\u8a73\u7d30"}},"link":{"new":"\u65b0\u898f\u4f5c\u6210","edit":"\u7de8\u96c6","destroy":"\u524a\u9664","back":"\u623b\u308b","marker":"\u25a0","catch":"\u63b4\u3080"},"editor":"\u7de8\u96c6\u30e1\u30cb\u30e5\u30fc","credit":{"digest":"\u7c21\u6613\u30af\u30ec\u30b8\u30c3\u30c8","full":"\u30af\u30ec\u30b8\u30c3\u30c8"},"tab":{"creator":{"home":"\u4f5c\u308b\u30fb\u898b\u305b\u308b","comic":"\u30b3\u30df\u30c3\u30af","story":"\u30b9\u30c8\u30fc\u30ea\u30fc","sheet":"\u7528\u7d19","scroll":"\u30b9\u30af\u30ed\u30fc\u30eb","panel":"\u30b3\u30de","original_picture":"\u539f\u753b","resource_picture":"\u7d20\u6750","catch":"\u3064\u304b\u3093\u3067\u3044\u308b\u30b3\u30de"},"reader":{"title":"\u8aad\u3080\u30fb\u63a2\u3059"},"demander":{"title":"\u501f\u308a\u53d7\u3051\u308b"},"system":{"title":"\u7ba1\u7406\u8005\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9","browse":"\u751f\u30c7\u30fc\u30bf","approve":"\u7ba1\u7406\u8005\u627f\u8a8d","port":"\u7d20\u6750\u8cb8\u501f","token":"\u30c8\u30fc\u30af\u30f3","layout":"\u30ec\u30a4\u30a2\u30a6\u30c8","test":"\u30c6\u30b9\u30c8\u7248","production":"\u88fd\u54c1\u7248"}},"filer":{"header":{"pick":"\u9078\u629e","symbol":"\u753b\u50cf","caption":"\u898b\u51fa\u3057","summary":"\u8981\u7d04","icon":"\u30d7\u30ed\u30d5","date":"\u65e5\u6642","edit":"\u7de8\u96c6"},"empty":"\u95b2\u89a7\u3067\u304d\u308b\u30a2\u30a4\u30c6\u30e0\u306f\u3042\u308a\u307e\u305b\u3093"}}};
\ No newline at end of file
+I18n.translations = {"en":{"date":{"formats":{"default":"%Y-%m-%d","short":"%b %d","long":"%B %d, %Y"},"day_names":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"abbr_day_names":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"month_names":[null,"January","February","March","April","May","June","July","August","September","October","November","December"],"abbr_month_names":[null,"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"order":["year","month","day"]},"time":{"formats":{"default":"%a, %d %b %Y %H:%M:%S %z","short":"%d %b %H:%M","long":"%B %d, %Y %H:%M"},"am":"am","pm":"pm"},"support":{"array":{"words_connector":", ","two_words_connector":" and ","last_word_connector":", and "}},"errors":{"format":"%{attribute} %{message}","messages":{"inclusion":"is not included in the list","exclusion":"is reserved","invalid":"is invalid","confirmation":"doesn't match confirmation","accepted":"must be accepted","empty":"can't be empty","blank":"can't be blank","too_long":"is too long (maximum is %{count} characters)","too_short":"is too short (minimum is %{count} characters)","wrong_length":"is the wrong length (should be %{count} characters)","not_a_number":"is not a number","not_an_integer":"must be an integer","greater_than":"must be greater than %{count}","greater_than_or_equal_to":"must be greater than or equal to %{count}","equal_to":"must be equal to %{count}","less_than":"must be less than %{count}","less_than_or_equal_to":"must be less than or equal to %{count}","odd":"must be odd","even":"must be even","url":"is not a valid URL","expired":"has expired, please request a new one","not_found":"not found","already_confirmed":"was already confirmed, please try signing in","not_locked":"was not locked","not_saved":{"one":"1 error prohibited this %{resource} from being saved:","other":"%{count} errors prohibited this %{resource} from being saved:"}}},"activerecord":{"errors":{"messages":{"taken":"has already been taken","record_invalid":"Validation failed: %{errors}"}}},"number":{"format":{"separator":".","delimiter":",","precision":3,"significant":false,"strip_insignificant_zeros":false},"currency":{"format":{"format":"%u%n","unit":"$","separator":".","delimiter":",","precision":2,"significant":false,"strip_insignificant_zeros":false}},"percentage":{"format":{"delimiter":""}},"precision":{"format":{"delimiter":""}},"human":{"format":{"delimiter":"","precision":3,"significant":true,"strip_insignificant_zeros":true},"storage_units":{"format":"%n %u","units":{"byte":{"one":"Byte","other":"Bytes"},"kb":"KB","mb":"MB","gb":"GB","tb":"TB"}},"decimal_units":{"format":"%n %u","units":{"unit":"","thousand":"Thousand","million":"Million","billion":"Billion","trillion":"Trillion","quadrillion":"Quadrillion"}}}},"datetime":{"distance_in_words":{"half_a_minute":"half a minute","less_than_x_seconds":{"one":"less than 1 second","other":"less than %{count} seconds"},"x_seconds":{"one":"1 second","other":"%{count} seconds"},"less_than_x_minutes":{"one":"less than a minute","other":"less than %{count} minutes"},"x_minutes":{"one":"1 minute","other":"%{count} minutes"},"about_x_hours":{"one":"about 1 hour","other":"about %{count} hours"},"x_days":{"one":"1 day","other":"%{count} days"},"about_x_months":{"one":"about 1 month","other":"about %{count} months"},"x_months":{"one":"1 month","other":"%{count} months"},"about_x_years":{"one":"about 1 year","other":"about %{count} years"},"over_x_years":{"one":"over 1 year","other":"over %{count} years"},"almost_x_years":{"one":"almost 1 year","other":"almost %{count} years"}},"prompts":{"year":"Year","month":"Month","day":"Day","hour":"Hour","minute":"Minute","second":"Seconds"}},"helpers":{"select":{"prompt":"Please select"},"submit":{"create":"Create %{model}","update":"Update %{model}","submit":"Save %{model}"},"button":{"create":"Create %{model}","update":"Update %{model}","submit":"Save %{model}"},"page_entries_info":{"one_page":{"display_entries":{"zero":"No %{entry_name} found","one":"Displaying <b>1</b> %{entry_name}","other":"Displaying <b>all %{count}</b> %{entry_name}"}},"more_pages":{"display_entries":"Displaying %{entry_name} <b>%{first}&nbsp;-&nbsp;%{last}</b> of <b>%{total}</b> in total"}}},"devise":{"failure":{"already_authenticated":"You are already signed in.","unauthenticated":"You need to sign in or sign up before continuing.","unconfirmed":"You have to confirm your account before continuing.","locked":"Your account is locked.","invalid":"Invalid email or password.","invalid_token":"Invalid authentication token.","timeout":"Your session expired, please sign in again to continue.","inactive":"Your account was not activated yet."},"sessions":{"signed_in":"Signed in successfully.","signed_out":"Signed out successfully."},"passwords":{"send_instructions":"You will receive an email with instructions about how to reset your password in a few minutes.","updated":"Your password was changed successfully. You are now signed in.","updated_not_active":"Your password was changed successfully.","send_paranoid_instructions":"If your e-mail exists on our database, you will receive a password recovery link on your e-mail"},"confirmations":{"send_instructions":"You will receive an email with instructions about how to confirm your account in a few minutes.","send_paranoid_instructions":"If your e-mail exists on our database, you will receive an email with instructions about how to confirm your account in a few minutes.","confirmed":"Your account was successfully confirmed. You are now signed in."},"registrations":{"signed_up":"Welcome! You have signed up successfully.","inactive_signed_up":"You have signed up successfully. However, we could not sign you in because your account is %{reason}.","updated":"You updated your account successfully.","destroyed":"Bye! Your account was successfully cancelled. We hope to see you again soon.","reasons":{"inactive":"inactive","unconfirmed":"unconfirmed","locked":"locked"}},"unlocks":{"send_instructions":"You will receive an email with instructions about how to unlock your account in a few minutes.","unlocked":"Your account was successfully unlocked. You are now signed in.","send_paranoid_instructions":"If your account exists, you will receive an email with instructions about how to unlock it in a few minutes."},"omniauth_callbacks":{"success":"Successfully authorized from %{kind} account.","failure":"Could not authorize you from %{kind} because \"%{reason}\"."},"mailer":{"confirmation_instructions":{"subject":"Confirmation instructions"},"reset_password_instructions":{"subject":"Reset password instructions"},"unlock_instructions":{"subject":"Unlock Instructions"}}},"views":{"pagination":{"first":"&laquo; First","last":"Last &raquo;","previous":"&lsaquo; Prev","next":"Next &rsaquo;","truncate":"&hellip;"}},"hello":"Hello world"},"ja":{"activerecord":{"models":{"user":"\u30e6\u30fc\u30b6","admin":"\u7ba1\u7406\u8005","demand_user":"\u501f\u624b","folder":"\u30d5\u30a9\u30eb\u30c0","scroll":"\u30b9\u30af\u30ed\u30fc\u30eb","scroll_panel":"\u30b9\u30af\u30b3\u30de","comic":"\u30b3\u30df\u30c3\u30af","comic_story":"\u30b3\u30df\u30b9\u30c8","story":"\u30b9\u30c8\u30fc\u30ea\u30fc","story_sheet":"\u30b9\u30c8\u7d19","sheet":"\u7528\u7d19","sheet_panel":"\u7d19\u30b3\u30de","panel":"\u30b3\u30de","panel_picture":"\u30b3\u30de\u7d75","speech_balloon":"\u30d5\u30ad\u30c0\u30b7","speech":"\u30bb\u30ea\u30d5","balloon":"\u30d5\u30ad\u30c0\u30b7\u67a0","ground_picture":"\u7d75\u5730","ground_color":"\u8272\u5730","original_picture":"\u539f\u753b","picture":"\u5b9f\u7d20\u6750","resource_picture":"\u7d20\u6750","resource_picture_picture":"\u7d20\u6750\u5b9f\u7d20\u6750","original_picture_license_group":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u9078\u629e","original_picture_license":"\u30e9\u30a4\u30bb\u30f3\u30b9\u9078\u629e","speech_balloon_template":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","writing_format":"\u8a18\u6cd5","license_group":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7","license":"\u30e9\u30a4\u30bb\u30f3\u30b9","author":"\u4f5c\u5bb6","artist":"\u7d75\u5e2b","system_picture":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf","provider":"\u8cb8\u624b","provider_status":"\u501f\u53d7\u72b6\u6cc1","demander":"\u501f\u624b","demander_status":"\u8cb8\u4e0e\u72b6\u6cc1","provider_license":"\u30e9\u30a4\u30bb\u30f3\u30b9\u5bfe\u7167\u8868","provider_artist":"\u7d75\u5e2b\u5bfe\u7167\u8868","provider_original_picture":"\u539f\u753b\u5bfe\u7167\u8868","pettanr_creative_commons_v30_licenses/attribute":"\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30b3\u30e2\u30f3\u30ba3.0","pettanr_pettan_commons_v01_licenses/attribute":"\u307a\u3063\u305f\u3093\u30b3\u30e2\u30f3\u30ba0.1","pettanr_pettan_protected_v01_licenses/attribute":"\u307a\u3063\u305f\u3093Protected0.1","pettanr_pettan_public_v01_licenses/attribute":"\u307a\u3063\u305f\u3093\u30d1\u30d6\u30ea\u30c3\u30af0.1","pettanr_public_domain_v01_licenses/attribute":"\u30d1\u30d6\u30ea\u30c3\u30af\u30c9\u30e1\u30a4\u30f3","pettanr_unknown_v01_licenses/attribute":"\u4e0d\u660e0.1"},"attributes":{"user":{"name":"\u30da\u30f3\u30cd\u30fc\u30e0","email":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","password":"\u30d1\u30b9\u30ef\u30fc\u30c9","password_confirmation":"\u78ba\u8a8d\u30d1\u30b9\u30ef\u30fc\u30c9","current_password":"\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9","remember_me":"\u6b21\u56de\u304b\u3089\u81ea\u52d5\u3067\u30ed\u30b0\u30a4\u30f3","authentication_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3"},"admin":{"email":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","password":"\u30d1\u30b9\u30ef\u30fc\u30c9","password_confirmation":"\u78ba\u8a8d\u30d1\u30b9\u30ef\u30fc\u30c9","current_password":"\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9","remember_me":"\u6b21\u56de\u304b\u3089\u81ea\u52d5\u3067\u30ed\u30b0\u30a4\u30f3","authentication_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3"},"demand_user":{"email":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9","password":"\u30d1\u30b9\u30ef\u30fc\u30c9","password_confirmation":"\u78ba\u8a8d\u30d1\u30b9\u30ef\u30fc\u30c9","current_password":"\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9","remember_me":"\u6b21\u56de\u304b\u3089\u81ea\u52d5\u3067\u30ed\u30b0\u30a4\u30f3","authentication_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3"},"folder":{"name":"\u30d5\u30a9\u30eb\u30c0\u540d","controller_name":"\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u540d","action_name":"\u30a2\u30af\u30b7\u30e7\u30f3\u540d","category_id":"\u7a2e\u5225","t":"\u9806\u5e8f","parent_id":"\u89aa\u30d5\u30a9\u30eb\u30c0","lft":"\u30c4\u30ea\u30fc\u5de6","rgt":"\u30c4\u30ea\u30fc\u53f3","depth":"\u30c4\u30ea\u30fc\u6df1\u3055","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"scroll":{"title":"\u30bf\u30a4\u30c8\u30eb","description":"\u3042\u3089\u3059\u3058","visible":"\u516c\u958b","author_id":"\u4f5c\u5bb6","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"scroll_panel":{"scroll_id":"\u30b9\u30af\u30ed\u30fc\u30eb","panel_id":"\u30b3\u30de","t":"No.","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"comic":{"title":"\u30bf\u30a4\u30c8\u30eb","description":"\u3042\u3089\u3059\u3058","visible":"\u516c\u958b","author_id":"\u4f5c\u5bb6","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"comic_story":{"comic_id":"\u30b3\u30df\u30c3\u30af","story_id":"\u30b9\u30c8\u30fc\u30ea\u30fc","t":"No.","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"story":{"comic_id":"\u30b3\u30df\u30c3\u30af","title":"\u30bf\u30a4\u30c8\u30eb","description":"\u3042\u3089\u3059\u3058","visible":"\u516c\u958b","author_id":"\u4f5c\u5bb6","t":"No.","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"story_sheet":{"story_id":"\u30b9\u30c8\u30fc\u30ea\u30fc","sheet_id":"\u7528\u7d19","t":"No.","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"sheet":{"caption":"\u8981\u7d04","width":"\u5e45","height":"\u9ad8\u3055","visible":"\u516c\u958b","author_id":"\u7de8\u96c6\u8005","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"sheet_panel":{"sheet_id":"\u7528\u7d19","panel_id":"\u30b3\u30de","x":"X","y":"Y","z":"\u91cd\u306a\u308a","t":"No.","author_id":"\u7de8\u96c6\u8005","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"panel":{"width":"\u5e45","height":"\u9ad8\u3055","border":"\u67a0","x":"X","y":"Y","z":"\u91cd\u306a\u308a","caption":"\u8981\u7d04","publish":"\u516c\u958b","author_id":"\u4f5c\u5bb6","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"panel_picture":{"panel_id":"\u30b3\u30de","picture_id":"\u5b9f\u7d20\u6750","link":"\u30ea\u30f3\u30af","x":"X","y":"Y","z":"\u91cd\u306a\u308a","t":"\u8a71\u9806","width":"\u5e45","height":"\u9ad8\u3055","caption":"\u69d8\u5b50","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"speech_balloon":{"panel_id":"\u30b3\u30de","speech_balloon_template_id":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","speech_balloon_template_module_name":"\u30d5\u30ad\u30c0\u30b7\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","z":"\u91cd\u306a\u308a","t":"\u8a71\u9806","caption":"\u69d8\u5b50","speech_balloon_template_settings":"\u30d5\u30ad\u30c0\u30b7\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"speech":{"speech_balloon_id":"\u30d5\u30ad\u30c0\u30b7","speech_balloon_template_id":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","speech_balloon_template_module_name":"\u30d5\u30ad\u30c0\u30b7\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","writing_format_id":"\u8a18\u6cd5","writing_format_module_name":"\u8a18\u6cd5\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","content":"\u30bb\u30ea\u30d5","font_size":"\u57fa\u672c\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba","text_align":"\u30c6\u30ad\u30b9\u30c8\u63c3\u3048","fore_color":"\u30d5\u30a9\u30f3\u30c8\u8272","x":"X","y":"Y","width":"\u5e45","height":"\u9ad8\u3055","quotes":"\u30ab\u30ae\u30ab\u30c3\u30b3","speech_balloon_template_settings":"\u30d5\u30ad\u30c0\u30b7\u62e1\u5f35\u30c7\u30fc\u30bf","writing_format_settings":"\u8a18\u6cd5\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"balloon":{"speech_balloon_id":"\u30d5\u30ad\u30c0\u30b7","speech_balloon_template_id":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","speech_balloon_template_module_name":"\u30d5\u30ad\u30c0\u30b7\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","system_picture_id":"\u753b\u50cf","x":"X","y":"Y","width":"\u5e45","height":"\u9ad8\u3055","r":"\u89d2\u5ea6","speech_balloon_template_settings":"\u30d5\u30ad\u30c0\u30b7\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"ground_picture":{"panel_id":"\u30b3\u30de","picture_id":"\u5b9f\u7d20\u6750","repeat":"\u7e70\u308a\u8fd4\u3057","x":"X","y":"Y","z":"\u91cd\u306a\u308a","t":"\u8a71\u9806","caption":"\u69d8\u5b50","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"ground_color":{"panel_id":"\u30b3\u30de","code":"\u30ab\u30e9\u30fc\u30b3\u30fc\u30c9","orientation":"\u65b9\u5411","xy":"\u30aa\u30d5\u30bb\u30c3\u30c8","wh":"\u30b5\u30a4\u30ba","z":"\u91cd\u306a\u308a","t":"\u8a71\u9806","caption":"\u69d8\u5b50","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"original_picture":{"ext":"\u753b\u50cf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8","width":"\u5e45","height":"\u9ad8\u3055","filesize":"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba","artist_id":"\u7d75\u5e2b","md5":"MD5","published_at":"\u516c\u958b","stopped_at":"\u505c\u6b62","uploaded_at":"\u6295\u7a3f","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"picture":{"original_picture_id":"\u539f\u753b","revision":"\u30d0\u30fc\u30b8\u30e7\u30f3","ext":"\u753b\u50cf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8","width":"\u5e45","height":"\u9ad8\u3055","filesize":"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba","md5":"MD5","artist_id":"\u7d75\u5e2b","license_id":"\u30e9\u30a4\u30bb\u30f3\u30b9","system_picture_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30de\u30fc\u30af","artist_name":"\u8457\u4f5c\u8005\u540d","license_group_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30d5\u30e9\u30b0","credit_picture_settings":"\u30af\u30ec\u30b8\u30c3\u30c8\u62e1\u5f35\u30c7\u30fc\u30bf","license_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u62e1\u5f35\u30c7\u30fc\u30bf","license_group_module_name":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","created_at":"\u516c\u958b\u65e5\u6642","updated_at":"\u516c\u958b\u65e5\u6642"},"resource_picture":{"original_picture_id":"\u539f\u753b","ext":"\u753b\u50cf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8","width":"\u5e45","height":"\u9ad8\u3055","filesize":"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba","md5":"MD5","artist_id":"\u7d75\u5e2b","license_group_id":"\u30e9\u30a4\u30bb\u30f3\u30b9","license_id":"\u30e9\u30a4\u30bb\u30f3\u30b9","system_picture_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30de\u30fc\u30af","artist_name":"\u8457\u4f5c\u8005\u540d","license_group_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30d5\u30e9\u30b0","credit_picture_settings":"\u30af\u30ec\u30b8\u30c3\u30c8\u62e1\u5f35\u30c7\u30fc\u30bf","license_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u62e1\u5f35\u30c7\u30fc\u30bf","license_group_module_name":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","picture_id":"\u5b9f\u7d20\u6750","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"resource_picture_picture":{"original_picture_id":"\u539f\u753b","resource_picture_id":"\u7d20\u6750","picture_id":"\u5b9f\u7d20\u6750","created_at":"\u66f4\u65b0","updated_at":"\u4f5c\u6210"},"original_picture_license_group":{"original_picture_id":"\u539f\u753b","license_group_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"original_picture_license":{"original_picture_id":"\u539f\u753b","license_group_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7","license_id":"\u30e9\u30a4\u30bb\u30f3\u30b9","license_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u62e1\u5f35\u30c7\u30fc\u30bf","license_group_module_name":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"speech_balloon_template":{"name":"\u7ba1\u7406\u540d","module_name":"\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","caption":"\u540d\u524d","t":"\u4e26\u3073\u9806","system_picture_id":"\u30a2\u30a4\u30b3\u30f3","settings":"\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"writing_format":{"name":"\u7ba1\u7406\u540d","module_name":"\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","caption":"\u540d\u524d","t":"\u4e26\u3073\u9806","system_picture_id":"\u30a2\u30a4\u30b3\u30f3","settings":"\u62e1\u5f35\u30c7\u30fc\u30bf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"license_group":{"name":"\u7ba1\u7406\u540d","module_name":"\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","caption":"\u540d\u524d","url":"URL","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"license":{"license_group_id":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7","license_group_module_name":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30e2\u30b8\u30e5\u30fc\u30eb\u540d","name":"\u7ba1\u7406\u540d","caption":"\u540d\u524d","url":"URL","system_picture_id":"\u30de\u30fc\u30af","license_group_settings":"\u30e9\u30a4\u30bb\u30f3\u30b9\u62e1\u5f35\u30c7\u30fc\u30bf","credit_picture_settings":"\u30af\u30ec\u30b8\u30c3\u30c8\u5185\u753b\u50cf","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"author":{"name":"\u30da\u30f3\u30cd\u30fc\u30e0","user_id":"\u30e6\u30fc\u30b6","working_panel_id":"\u3064\u304b\u3093\u3067\u3044\u308b\u30b3\u30de","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"artist":{"name":"\u30da\u30f3\u30cd\u30fc\u30e0","author_id":"\u4f5c\u5bb6","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"system_picture":{"ext":"\u753b\u50cf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8","width":"\u5e45","height":"\u9ad8\u3055","filesize":"\u30d5\u30a1\u30a4\u30eb\u30b5\u30a4\u30ba","md5":"MD5","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider":{"provider_status_id":"\u501f\u53d7\u72b6\u6cc1","name":"\u7ba1\u7406\u540d","caption":"\u30b5\u30a4\u30c8\u540d","url":"\u30b5\u30a4\u30c8\u30c8\u30c3\u30d7\u30da\u30fc\u30b8url","description":"\u30b5\u30a4\u30c8\u7d39\u4ecb\u6587","demander_url":"\u501f\u624b\u30da\u30fc\u30b8url","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider_status":{"token":"\u30c8\u30fc\u30af\u30f3","receive_hour1":"\u5de1\u56de\u66421","receive_hour2":"\u5de1\u56de\u66422","received_at":"\u524d\u56de\u5de1\u56de\u65e5\u6642","stopped_at":"\u505c\u6b62\u65e5\u6642","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"demander":{"demand_user_id":"\u501f\u624b\u30a2\u30ab\u30a6\u30f3\u30c8","name":"\u30b5\u30a4\u30c8\u7ba1\u7406\u540d","caption":"\u30b5\u30a4\u30c8\u540d","url":"\u30b5\u30a4\u30c8\u30c8\u30c3\u30d7\u30da\u30fc\u30b8url","description":"\u30b5\u30a4\u30c8\u7d39\u4ecb\u6587","demander_url":"\u501f\u624b\u30da\u30fc\u30b8url","demander_status_id":"\u8cb8\u4e0e\u72b6\u6cc1","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"demander_status":{"requested_at":"\u7533\u8acb\u65e5\u6642","rejected_at":"\u5426\u6c7a\u65e5\u6642","approved_at":"\u53ef\u6c7a\u65e5\u6642","receive_hour1":"\u5de1\u56de\u66421","receive_hour2":"\u5de1\u56de\u66422","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider_license":{"provider_id":"\u8cb8\u624b","providers_license_id":"\u8cb8\u624b\u5074\u30e9\u30a4\u30bb\u30f3\u30b9","demanders_license_id":"\u501f\u624b\u5074\u30e9\u30a4\u30bb\u30f3\u30b9","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider_artist":{"provider_id":"\u8cb8\u624b","providers_artist_id":"\u8cb8\u624b\u5074\u7d75\u5e2b","demanders_artist_id":"\u501f\u624b\u5074\u7d75\u5e2b","created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"provider_original_picture":{"created_at":"\u4f5c\u6210","updated_at":"\u66f4\u65b0"},"pettanr_creative_commons_v30_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b"},"pettanr_creative_commons_v30_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_creative_commons_v30_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","artist_url":"\u4f5c\u8005\u306e\u30db\u30fc\u30e0\u30da\u30fc\u30b8URL","source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","more_permission_url":"\u8ffd\u52a0\u7684\u8a31\u8afe\u306eURL"},"pettanr_pettan_commons_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b"},"pettanr_pettan_commons_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_pettan_commons_v01_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_pettan_protected_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_pettan_protected_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_pettan_protected_v01_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_pettan_public_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_pettan_public_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3"},"pettanr_pettan_public_v01_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_public_domain_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_public_domain_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_public_domain_v01_licenses_attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","note":"\u5099\u8003"},"pettanr_unknown_v01_licenses_license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_unknown_v01_licenses_credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_unknown_v01_licenses_attribute":{"source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","note":"\u5099\u8003"},"pettanr_creative_commons_v30_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b"},"pettanr_creative_commons_v30_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_creative_commons_v30_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","artist_url":"\u4f5c\u8005\u306e\u30db\u30fc\u30e0\u30da\u30fc\u30b8URL","source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","more_permission_url":"\u8ffd\u52a0\u7684\u8a31\u8afe\u306eURL"},"pettanr_pettan_commons_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b"},"pettanr_pettan_commons_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_pettan_commons_v01_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_pettan_protected_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_pettan_protected_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_pettan_protected_v01_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_pettan_public_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_pettan_public_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3"},"pettanr_pettan_public_v01_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","sources":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL"},"pettanr_public_domain_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_public_domain_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_public_domain_v01_licenses/attribute":{"artist_name":"\u8457\u4f5c\u8005\u540d","caption":"\u4f5c\u54c1\u306e\u540d\u524d","source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","note":"\u5099\u8003"},"pettanr_unknown_v01_licenses/license":{"open":"\u30af\u30ed\u30fc\u30ba\u30c9\u306a\u5229\u7528","commercial":"\u5546\u7528\u5229\u7528","official":"\u516c\u5f0f\u30e9\u30a4\u30bb\u30f3\u30b9","attribution":"\u30af\u30ec\u30b8\u30c3\u30c8\u306e\u8868\u793a","derive":"\u6539\u5909","thumbnail":"\u30b5\u30e0\u30cd\u30a4\u30eb\u306e\u4f5c\u6210","gif_convert":"GIF\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3078\u306e\u5909\u63db","reverse":"\u53cd\u8ee2","sync_vh":"\u7e26\u6a2a\u6bd4\u306e\u6539\u5909","overlap":"\u91cd\u306d\u5408\u308f\u305b","trackback":"\u30c8\u30e9\u30c3\u30af\u30d0\u30c3\u30af"},"pettanr_unknown_v01_licenses/credit_picture":{"source_url_btn_id":"URL\u30dc\u30bf\u30f3","source_url_off_btn_id":"URL\u306f\u306a\u3044\u30dc\u30bf\u30f3"},"pettanr_unknown_v01_licenses/attribute":{"source_url":"\u53c2\u8003\u306b\u3057\u305f\u753b\u50cf\u306eURL","note":"\u5099\u8003"}},"errors":{"format":"%{attribute}%{message}","messages":{"accepted":"\u3092\u53d7\u8afe\u3057\u3066\u304f\u3060\u3055\u3044\u3002","blank":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","confirmation":"\u3068\u78ba\u8a8d\u306e\u5165\u529b\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002","empty":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","equal_to":"\u306f%{count}\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","even":"\u306f\u5076\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","exclusion":"\u306f\u4e88\u7d04\u3055\u308c\u3066\u3044\u307e\u3059\u3002","greater_than":"\u306f%{count}\u3088\u308a\u5927\u304d\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","greater_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0a\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","inclusion":"\u306f\u4e00\u89a7\u306b\u3042\u308a\u307e\u305b\u3093\u3002","invalid":"\u306f\u4e0d\u6b63\u306a\u5024\u3067\u3059\u3002","less_than":"\u306f%{count}\u3088\u308a\u5c0f\u3055\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","less_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0b\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_a_number":"\u306f\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_an_integer":"\u306f\u6574\u6570\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","odd":"\u306f\u5947\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","record_invalid":"\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 %{errors}","taken":"\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002","too_long":"\u306f%{count}\u6587\u5b57\u4ee5\u5185\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","too_short":"\u306f%{count}\u6587\u5b57\u4ee5\u4e0a\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","wrong_length":"\u306f%{count}\u6587\u5b57\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","existence":"\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002","url":"\u306furl\u306e\u66f8\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","natural_number":"\u306f1\u4ee5\u4e0a\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_zero":"\u306f0\u4ee5\u5916\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","resize":"\u306f\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","reverse":"\u306f\u53cd\u8ee2\u3067\u304d\u307e\u305b\u3093\u3002","sync_vh":"\u306f\u7e26\u6a2a\u6bd4\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","quotes_even":"\u306f\u30ab\u30c3\u30b3\u306e\u958b\u304d\u3068\u9589\u3058\u3092\u7a7a\u767d\u533a\u5207\u308a\u306e\u30da\u30a2\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","extend_settings":"\u62e1\u5f35\u30c7\u30fc\u30bf\u306e\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"},"template":{"body":"\u6b21\u306e\u9805\u76ee\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","header":{"one":"%{model}\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002","other":"%{model}\u306b%{count}\u3064\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}}}},"pettanr_creative_commons_v30_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_pettan_commons_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_pettan_protected_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_pettan_public_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_public_domain_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"pettanr_unknown_v01_licenses":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","selected":"\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059","no_blank":"\u5fc5\u9808\u9805\u76ee","next":"\u6b21\u3078","digest_credit":"\u30af\u30ec\u30b8\u30c3\u30c8","full_credit":"\u30af\u30ec\u30b8\u30c3\u30c8\u5b8c\u5168\u7248"},"circle_speech_balloon":{"new":null},"plain_speech_balloon":{"new":null},"square_speech_balloon":{"new":null},"pettanr_simple_format":{"new":null},"errors":{"messages":{"not_found":"\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f","already_confirmed":"\u306f\u65e2\u306b\u767b\u9332\u6e08\u307f\u3067\u3059","not_locked":"\u306f\u51cd\u7d50\u3055\u308c\u3066\u3044\u307e\u305b\u3093","accepted":"\u3092\u53d7\u8afe\u3057\u3066\u304f\u3060\u3055\u3044\u3002","blank":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","confirmation":"\u3068\u78ba\u8a8d\u306e\u5165\u529b\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002","empty":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","equal_to":"\u306f%{count}\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","even":"\u306f\u5076\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","exclusion":"\u306f\u4e88\u7d04\u3055\u308c\u3066\u3044\u307e\u3059\u3002","greater_than":"\u306f%{count}\u3088\u308a\u5927\u304d\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","greater_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0a\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","inclusion":"\u306f\u4e00\u89a7\u306b\u3042\u308a\u307e\u305b\u3093\u3002","invalid":"\u306f\u4e0d\u6b63\u306a\u5024\u3067\u3059\u3002","less_than":"\u306f%{count}\u3088\u308a\u5c0f\u3055\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","less_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0b\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_a_number":"\u306f\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_an_integer":"\u306f\u6574\u6570\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","odd":"\u306f\u5947\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","record_invalid":"\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 %{errors}","taken":"\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002","too_long":"\u306f%{count}\u6587\u5b57\u4ee5\u5185\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","too_short":"\u306f%{count}\u6587\u5b57\u4ee5\u4e0a\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","wrong_length":"\u306f%{count}\u6587\u5b57\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","existence":"\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002","url":"\u306furl\u306e\u66f8\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","natural_number":"\u306f1\u4ee5\u4e0a\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_zero":"\u306f0\u4ee5\u5916\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","resize":"\u306f\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","reverse":"\u306f\u53cd\u8ee2\u3067\u304d\u307e\u305b\u3093\u3002","sync_vh":"\u306f\u7e26\u6a2a\u6bd4\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","quotes_even":"\u306f\u30ab\u30c3\u30b3\u306e\u958b\u304d\u3068\u9589\u3058\u3092\u7a7a\u767d\u533a\u5207\u308a\u306e\u30da\u30a2\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","extend_settings":"\u62e1\u5f35\u30c7\u30fc\u30bf\u306e\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"},"format":"%{attribute}%{message}","template":{"body":"\u6b21\u306e\u9805\u76ee\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","header":{"one":"%{model}\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002","other":"%{model}\u306b%{count}\u3064\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}},"not_create":"\u304c\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002","invalid_json":"\u4e0d\u6b63\u306ajson\u30c7\u30fc\u30bf\u3067\u3059\u3002","invalid_t":"\u30b3\u30de\u8981\u7d20\u306e\u8a71\u9806\u304c\u4e0d\u6b63\u3067\u3059\u3002","not_convert":"Gif\u753b\u50cf\u3078\u306e\u30b3\u30f3\u30d0\u30fc\u30c8\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","invalid_image":"\u753b\u50cf\u3068\u3057\u3066\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},"devise":{"failure":{"unauthenticated":"\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304f\u3060\u3055\u3044\u3002","unconfirmed":"\u672c\u767b\u9332\u3092\u884c\u3063\u3066\u304f\u3060\u3055\u3044\u3002","locked":"\u3042\u306a\u305f\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u51cd\u7d50\u3055\u308c\u3066\u3044\u307e\u3059\u3002","invalid":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u304b\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u9055\u3044\u307e\u3059\u3002","invalid_token":"\u8a8d\u8a3c\u30ad\u30fc\u304c\u4e0d\u6b63\u3067\u3059\u3002","timeout":"\u30bb\u30c3\u30b7\u30e7\u30f3\u304c\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8\u3057\u307e\u3057\u305f\u3002\u3082\u3046\u4e00\u5ea6\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304f\u3060\u3055\u3044\u3002","inactive":"\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u30a2\u30af\u30c6\u30a3\u30d9\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"},"sessions":{"signed_in":"\u30ed\u30b0\u30a4\u30f3\u3057\u307e\u3057\u305f\u3002","signed_out":"\u30ed\u30b0\u30a2\u30a6\u30c8\u3057\u307e\u3057\u305f\u3002"},"passwords":{"send_instructions":"\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u30ea\u30bb\u30c3\u30c8\u65b9\u6cd5\u3092\u6570\u5206\u4ee5\u5185\u306b\u30e1\u30fc\u30eb\u3067\u3054\u9023\u7d61\u3057\u307e\u3059\u3002","updated":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3057\u307e\u3057\u305f\u3002"},"confirmations":{"send_instructions":"\u767b\u9332\u65b9\u6cd5\u3092\u6570\u5206\u4ee5\u5185\u306b\u30e1\u30fc\u30eb\u3067\u3054\u9023\u7d61\u3057\u307e\u3059\u3002","confirmed":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u767b\u9332\u3057\u307e\u3057\u305f\u3002"},"registrations":{"signed_up":"\u30a2\u30ab\u30a6\u30f3\u30c8\u767b\u9332\u3092\u53d7\u3051\u4ed8\u3051\u307e\u3057\u305f\u3002\u78ba\u8a8d\u306e\u30e1\u30fc\u30eb\u3092\u304a\u9001\u308a\u3057\u307e\u3059\u3002","updated":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002","destroyed":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u524a\u9664\u3057\u307e\u3057\u305f\u3002\u307e\u305f\u306e\u3054\u5229\u7528\u3092\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\u3002"},"unlocks":{"send_instructions":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u51cd\u7d50\u89e3\u9664\u65b9\u6cd5\u3092\u6570\u5206\u4ee5\u5185\u306b\u30e1\u30fc\u30eb\u3067\u3054\u9023\u7d61\u3057\u307e\u3059\u3002","unlocked":"\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u51cd\u7d50\u89e3\u9664\u3057\u307e\u3057\u305f\u3002"},"mailer":{"confirmation_instructions":{"subject":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u767b\u9332\u65b9\u6cd5"},"reset_password_instructions":{"subject":"\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u518d\u8a2d\u5b9a"},"unlock_instructions":{"subject":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u51cd\u7d50\u89e3\u9664"}}},"date":{"abbr_day_names":["\u65e5","\u6708","\u706b","\u6c34","\u6728","\u91d1","\u571f"],"abbr_month_names":[null,"1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"day_names":["\u65e5\u66dc\u65e5","\u6708\u66dc\u65e5","\u706b\u66dc\u65e5","\u6c34\u66dc\u65e5","\u6728\u66dc\u65e5","\u91d1\u66dc\u65e5","\u571f\u66dc\u65e5"],"formats":{"default":"%Y/%m/%d","long":"%Y\u5e74%m\u6708%d\u65e5(%a)","short":"%m/%d"},"month_names":[null,"1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],"order":["year","month","day"]},"datetime":{"distance_in_words":{"about_x_hours":{"one":"\u7d041\u6642\u9593","other":"\u7d04%{count}\u6642\u9593"},"about_x_months":{"one":"\u7d041\u30f6\u6708","other":"\u7d04%{count}\u30f6\u6708"},"about_x_years":{"one":"\u7d041\u5e74","other":"\u7d04%{count}\u5e74"},"almost_x_years":{"one":"1\u5e74\u5f31","other":"%{count}\u5e74\u5f31"},"half_a_minute":"30\u79d2\u524d\u5f8c","less_than_x_minutes":{"one":"1\u5206\u4ee5\u5185","other":"%{count}\u5206\u4ee5\u5185"},"less_than_x_seconds":{"one":"1\u79d2\u4ee5\u5185","other":"%{count}\u79d2\u4ee5\u5185"},"over_x_years":{"one":"1\u5e74\u4ee5\u4e0a","other":"%{count}\u5e74\u4ee5\u4e0a"},"x_days":{"one":"1\u65e5","other":"%{count}\u65e5"},"x_minutes":{"one":"1\u5206","other":"%{count}\u5206"},"x_months":{"one":"1\u30f6\u6708","other":"%{count}\u30f6\u6708"},"x_seconds":{"one":"1\u79d2","other":"%{count}\u79d2"}},"prompts":{"day":"\u65e5","hour":"\u6642","minute":"\u5206","month":"\u6708","second":"\u79d2","year":"\u5e74"}},"helpers":{"select":{"prompt":"\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},"submit":{"create":"\u767b\u9332\u3059\u308b","submit":"\u4fdd\u5b58\u3059\u308b","update":"\u66f4\u65b0\u3059\u308b"}},"number":{"currency":{"format":{"delimiter":",","format":"%n%u","precision":0,"separator":".","significant":false,"strip_insignificant_zeros":false,"unit":"\u5186"}},"format":{"delimiter":",","precision":3,"separator":".","significant":false,"strip_insignificant_zeros":false},"human":{"decimal_units":{"format":"%n %u","units":{"billion":"\u5341\u5104","million":"\u767e\u4e07","quadrillion":"\u5343\u5146","thousand":"\u5343","trillion":"\u5146","unit":""}},"format":{"delimiter":"","precision":3,"significant":true,"strip_insignificant_zeros":true},"storage_units":{"format":"%n%u","units":{"byte":"\u30d0\u30a4\u30c8","gb":"\u30ae\u30ac\u30d0\u30a4\u30c8","kb":"\u30ad\u30ed\u30d0\u30a4\u30c8","mb":"\u30e1\u30ac\u30d0\u30a4\u30c8","tb":"\u30c6\u30e9\u30d0\u30a4\u30c8"}}},"percentage":{"format":{"delimiter":""}},"precision":{"format":{"delimiter":""}}},"support":{"array":{"last_word_connector":"\u3068","two_words_connector":"\u3068","words_connector":"\u3068"}},"time":{"am":"\u5348\u524d","formats":{"default":"%Y/%m/%d %H:%M:%S","long":"%Y\u5e74%m\u6708%d\u65e5(%a) %H\u6642%M\u5206%S\u79d2 %z","short":"%y/%m/%d %H:%M"},"pm":"\u5348\u5f8c"},"activemodel":{"errors":{"format":"%{attribute}%{message}","messages":{"accepted":"\u3092\u53d7\u8afe\u3057\u3066\u304f\u3060\u3055\u3044\u3002","blank":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","confirmation":"\u3068\u78ba\u8a8d\u306e\u5165\u529b\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002","empty":"\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","equal_to":"\u306f%{count}\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","even":"\u306f\u5076\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","exclusion":"\u306f\u4e88\u7d04\u3055\u308c\u3066\u3044\u307e\u3059\u3002","greater_than":"\u306f%{count}\u3088\u308a\u5927\u304d\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","greater_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0a\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","inclusion":"\u306f\u4e00\u89a7\u306b\u3042\u308a\u307e\u305b\u3093\u3002","invalid":"\u306f\u4e0d\u6b63\u306a\u5024\u3067\u3059\u3002","less_than":"\u306f%{count}\u3088\u308a\u5c0f\u3055\u3044\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","less_than_or_equal_to":"\u306f%{count}\u4ee5\u4e0b\u306e\u5024\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_a_number":"\u306f\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_an_integer":"\u306f\u6574\u6570\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","odd":"\u306f\u5947\u6570\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","record_invalid":"\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002 %{errors}","taken":"\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002","too_long":"\u306f%{count}\u6587\u5b57\u4ee5\u5185\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","too_short":"\u306f%{count}\u6587\u5b57\u4ee5\u4e0a\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","wrong_length":"\u306f%{count}\u6587\u5b57\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","existence":"\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002","url":"\u306furl\u306e\u66f8\u5f0f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","natural_number":"\u306f1\u4ee5\u4e0a\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","not_zero":"\u306f0\u4ee5\u5916\u306e\u6570\u5024\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","resize":"\u306f\u30b5\u30a4\u30ba\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","reverse":"\u306f\u53cd\u8ee2\u3067\u304d\u307e\u305b\u3093\u3002","sync_vh":"\u306f\u7e26\u6a2a\u6bd4\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002","quotes_even":"\u306f\u30ab\u30c3\u30b3\u306e\u958b\u304d\u3068\u9589\u3058\u3092\u7a7a\u767d\u533a\u5207\u308a\u306e\u30da\u30a2\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002","extend_settings":"\u62e1\u5f35\u30c7\u30fc\u30bf\u306e\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"},"template":{"body":"\u6b21\u306e\u9805\u76ee\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","header":{"one":"%{model}\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002","other":"%{model}\u306b%{count}\u3064\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"}}}},"flash":{"notice":{"created":"%{model}\u304c\u4f5c\u6210\u3055\u308c\u307e\u3057\u305f\u3002","updated":"%{model}\u304c\u66f4\u65b0\u3055\u308c\u307e\u3057\u305f\u3002","destroyed":"%{model}\u304c\u524a\u9664\u3055\u308c\u307e\u3057\u305f\u3002","not_created":"%{model}\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","not_updated":"%{model}\u306e\u66f4\u65b0\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","not_destroyed":"%{model}\u306e\u524a\u9664\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"}},"picture_io":{"error":"\u753b\u50cf\u4fdd\u7ba1\u5eab\u3068\u306e\u624b\u7d9a\u304d\u3067\u7570\u5e38\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002"},"select_items":{"form":{"space":"\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044"},"scroll":{"visible":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"comic":{"visible":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"story":{"visible":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"sheet":{"visible":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"panel":{"publish":{"private":"\u975e\u516c\u958b","public":"\u516c\u958b"}},"ground_pictures":{"repeat":{"repeat":"\u5168\u4f53","repeat-x":"\u6a2a\u65b9\u5411","repeat-y":"\u7e26\u65b9\u5411","no-repeat":"\u306a\u3057"}},"ground_color":{"orientation":{"horizontal":"\u6a2a\u65b9\u5411","vertical":"\u7e26\u65b9\u5411"}},"speeches":{"font_size":{"ultra_small":"\u6975\u5c0f","very_small":"\u5c0f\u5c0f","small":"\u5c0f","semi_small":"\u5fae\u5c0f","normal":"\u4e26","semi_large":"\u5fae\u5927","large":"\u5927","very_large":"\u5927\u5927","ultra_large":"\u6975\u5927"},"text_align":{"none":"\u6307\u5b9a\u3057\u306a\u3044","left":"\u5de6\u5bc4\u305b","right":"\u53f3\u5bc4\u305b","center":"\u4e2d\u592e\u5bc4\u305b"}},"provider_status":{"status":{"waiting":"\u5f85\u6a5f\u4e2d","receiving":"\u7533\u8acb\u4e2d"}},"demander_status":{"status":{"waiting":"\u5f85\u6a5f\u4e2d","rejected":"\u5426\u6c7a\u30fb\u505c\u6b62\u4e2d","requesting":"\u7533\u8acb\u4e2d","approved":"\u8cb8\u4e0e\u4e2d"}}},"users":{"shared":{"signin":"\u30ed\u30b0\u30a4\u30f3","signup":"\u65b0\u898f\u5165\u4f1a","forgot":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u305f"},"signup":{"title":"\u30e6\u30fc\u30b6\u767b\u9332","signup":"\u767b\u9332\u3059\u308b"},"signin":{"title":"\u30ed\u30b0\u30a4\u30f3","signin":"\u30ed\u30b0\u30a4\u30f3"},"edit":{"title":"\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8a2d\u5b9a\u5909\u66f4"},"forgot":{"title":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f","reset":"\u65b0\u3057\u3044\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u767a\u884c\u3059\u308b"}},"admins":{"shared":{"signin":"\u7ba1\u7406\u8005\u30ed\u30b0\u30a4\u30f3","signup":"\u65b0\u898f\u5165\u4f1a","forgot":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u305f"},"signup":{"title":"\u7ba1\u7406\u8005\u767b\u9332","signup":"\u767b\u9332\u3059\u308b"},"signin":{"title":"\u7ba1\u7406\u8005\u30ed\u30b0\u30a4\u30f3","signin":"\u30ed\u30b0\u30a4\u30f3"},"edit":{"title":"\u7ba1\u7406\u8005\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8a2d\u5b9a\u5909\u66f4"},"forgot":{"title":"\u7ba1\u7406\u8005\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f","reset":"\u65b0\u3057\u3044\u7ba1\u7406\u8005\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u767a\u884c\u3059\u308b"}},"demand_users":{"shared":{"signin":"\u501f\u624b\u30ed\u30b0\u30a4\u30f3","signup":"\u65b0\u898f\u5165\u4f1a","forgot":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u305f"},"signup":{"title":"\u501f\u624b\u767b\u9332","signup":"\u767b\u9332\u3059\u308b"},"signin":{"title":"\u501f\u624b\u30ed\u30b0\u30a4\u30f3","signin":"\u30ed\u30b0\u30a4\u30f3"},"edit":{"title":"\u501f\u624b\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u8a2d\u5b9a\u5909\u66f4"},"forgot":{"title":"\u501f\u624b\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f","reset":"\u65b0\u3057\u3044\u501f\u624b\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u767a\u884c\u3059\u308b"}},"home":{"index":{"title":"\u30db\u30fc\u30e0","updated_scroll":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u6f2b\u753b","catch":"\u3064\u304b\u3093\u3067\u3044\u308b\u30b3\u30de","used_element":"\u6700\u8fd1\u4f7f\u3063\u305f\u90e8\u54c1","updated_picture":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u753b\u50cf","author":"\u4f5c\u5bb6","artist":"\u7d75\u5e2b","not_author":"\u4f5c\u54c1\u3092\u516c\u958b\u3059\u308b\u306b\u306f\u4f5c\u5bb6\u767b\u9332","not_artist":"\u753b\u50cf\u3092\u516c\u958b\u3059\u308b\u306b\u306f\u7d75\u5e2b\u767b\u9332"},"scrolls":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b9\u30af\u30ed\u30fc\u30eb"},"scroll_panels":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b9\u30af\u30b3\u30de"},"comics":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b3\u30df\u30c3\u30af"},"comic_stories":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b3\u30df\u30b9\u30c8"},"stories":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b9\u30c8\u30fc\u30ea\u30fc"},"story_sheets":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b9\u30c8\u7d19"},"sheets":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u7528\u7d19"},"sheet_panels":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u7d19\u30b3\u30de"},"panels":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b3\u30de"},"resource_pictures":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u7d20\u6750"},"panel_pictures":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30b3\u30de\u7d75"},"speech_balloons":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30d5\u30ad\u30c0\u30b7"},"balloons":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30d5\u30ad\u30c0\u30b7\u67a0"},"speeches":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u30bb\u30ea\u30d5"},"ground_pictures":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u7d75\u5730"},"ground_colors":{"title":"\u6700\u8fd1\u4f7f\u3063\u305f\u8272\u5730"},"configure":{"title":"\u8a2d\u5b9a","caption":"\u30a2\u30ab\u30a6\u30f3\u30c8%{email}\u306e\u8a2d\u5b9a","password_caption":"\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u304a\u3088\u3073\u30d1\u30b9\u30ef\u30fc\u30c9\u306e\u5909\u66f4","new_password_notice":"\u30d1\u30b9\u30ef\u30fc\u30c9\u3092\u5909\u66f4\u3057\u306a\u3044\u5834\u5408\u306f\u7a7a\u6b04\u306b\u3057\u3066\u304f\u3060\u3055\u3044","current_password_notice":"\u78ba\u8a8d\u306e\u305f\u3081\u306b\u73fe\u5728\u306e\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059","change_password":"\u5909\u66f4\u3059\u308b","token_caption":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3","your_token":"\u3042\u306a\u305f\u306e\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u306f%{token}\u3067\u3059","delete_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u3092\u524a\u9664\u3059\u308b","about_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u306fWebAPI\u3092\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u4f7f\u3044\u307e\u3059","generate_token":"\u8a8d\u8a3c\u30c8\u30fc\u30af\u30f3\u3092\u767a\u884c\u3059\u308b","cancel_caption":"\u9000\u4f1a","cancel_account":"\u9000\u4f1a\u3059\u308b","no_author":"\u4f5c\u5bb6\u767b\u9332\u3055\u308c\u3066\u3044\u307e\u305b\u3093","about_author":"\u4f5c\u5bb6\u306b\u306a\u308b\u3068\u6f2b\u753b\u3092\u516c\u958b\u3067\u304d\u307e\u3059","no_artist":"\u7d75\u5e2b\u767b\u9332\u3055\u308c\u3066\u3044\u307e\u305b\u3093","about_artist":"\u7d75\u5e2b\u306b\u306a\u308b\u3068\u7d20\u6750\u3092\u516c\u958b\u3067\u304d\u307e\u3059"},"sign_out":{"title":"\u30ed\u30b0\u30a2\u30a6\u30c8"},"sign_in":{"title":"\u30ed\u30b0\u30a4\u30f3"}},"top":{"index":{"title":"\u8aad\u3080\u30fb\u63a2\u3059"},"metro":{"title":"\u30c7\u30b9\u30af\u30c8\u30c3\u30d7\u30a2\u30d7\u30ea\u98a8metro\u3067\u4f53\u9a13"},"user_resources":"\u767a\u8868\u4f5c\u54c1\u304b\u3089","human_resources":"\u4eba\u7269\u304b\u3089","system_resources":"\u30b7\u30b9\u30c6\u30e0\u30ea\u30bd\u30fc\u30b9\u304b\u3089","return":"\u30b7\u30f3\u30d7\u30eb\u7248\u306b\u623b\u308b"},"folders":{"root":{"title":"\u30d5\u30a9\u30eb\u30c0"},"index":{"title":"\u30d5\u30a9\u30eb\u30c0\u4e00\u89a7"},"show":{"title":"\u30d5\u30a9\u30eb\u30c0\u8a73\u7d30"},"new":{"title":"\u30d5\u30a9\u30eb\u30c0\u4f5c\u6210"},"edit":{"title":"\u30d5\u30a9\u30eb\u30c0\u5909\u66f4"},"create":{"title":"\u30d5\u30a9\u30eb\u30c0\u4f5c\u6210"},"update":{"title":"\u30d5\u30a9\u30eb\u30c0\u5909\u66f4"},"destroy":{"title":"\u30d5\u30a9\u30eb\u30c0\u524a\u9664"},"submit":{"new":"\u30d5\u30a9\u30eb\u30c0\u4f5c\u6210","edit":"\u30d5\u30a9\u30eb\u30c0\u5909\u66f4"}},"scrolls":{"scroll_panels_count":"%{c}\u30b3\u30de","index":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u4e00\u89a7","new":"\u65b0\u520a"},"show":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u8a73\u7d30","leaf":"\u30b3\u30de\u306e\u8ffd\u52a0\u3068\u4e26\u3073\u66ff\u3048"},"play":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u3092\u8aad\u3080","empty":"\u95b2\u89a7\u3067\u304d\u308b\u30b9\u30af\u30b3\u30de\u306f\u3042\u308a\u307e\u305b\u3093"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30af\u30ed\u30fc\u30eb\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u30b9\u30af\u30ed\u30fc\u30eb\u4e00\u89a7"},"new":{"title":"\u65b0\u520a\u4f5c\u6210"},"edit":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u5909\u66f4"},"create":{"title":"\u65b0\u520a\u4f5c\u6210"},"update":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u5909\u66f4"},"destroy":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u524a\u9664"},"submit":{"new":"\u65b0\u520a\u4f5c\u6210","edit":"\u30b9\u30af\u30ed\u30fc\u30eb\u5909\u66f4"}},"scroll_panels":{"index":{"title":"\u30b9\u30af\u30b3\u30de\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u30b9\u30af\u30b3\u30de\u4e00\u89a7"},"by_scroll":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u306e\u30b9\u30af\u30b3\u30de\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30af\u30b3\u30de\u4e00\u89a7"},"show":{"title":"\u30b9\u30af\u30b3\u30de\u8a73\u7d30"},"new":{"title":"\u30b9\u30af\u30b3\u30de\u8ffd\u52a0"},"edit":{"title":"\u4e26\u3073\u66ff\u3048"},"create":{"title":"\u30b9\u30af\u30b3\u30de\u8ffd\u52a0"},"update":{"title":"\u4e26\u3073\u66ff\u3048"},"destroy":{"title":"\u30b9\u30af\u30b3\u30de\u524a\u9664"},"submit":{"new":"\u30b9\u30af\u30b3\u30de\u4f5c\u6210","edit":"\u30b9\u30af\u30b3\u30de\u5909\u66f4"},"move":"\u79fb\u52d5","player":{"move":"\u9806\u5e8f\u306e\u5165\u308c\u66ff\u3048","before_insert":"\u3053\u306e\u76f4\u524d\u306b\u30b3\u30de\u3092\u633f\u5165","append":"\u30b3\u30de\u3092\u8ffd\u52a0","destroy":"\u53d6\u308a\u5916\u3059","insert_dialog":"\u9078\u629e\u3057\u305f\u30b3\u30de\u3092\u633f\u5165","move_dialog":"\u3053\u306e\u30b3\u30de\u3092\u79fb\u52d5"},"append":{"panel":"\u3053\u306e\u30b3\u30de\u3092\u8ffd\u52a0\u3059\u308b","scroll":"\u3053\u306e\u30b9\u30af\u30ed\u30fc\u30eb\u306b\u8ffd\u52a0\u3059\u308b","new_panels":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b3\u30de","fresh_panels":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b3\u30de","new_scrolls":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b9\u30af\u30ed\u30fc\u30eb","fresh_scrolls":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30af\u30ed\u30fc\u30eb"}},"comics":{"comic_stories_count":"%{c}\u8a71","index":{"title":"\u30b3\u30df\u30c3\u30af\u4e00\u89a7","new":"\u65b0\u520a"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b3\u30df\u30c3\u30af\u4e00\u89a7"},"show":{"title":"\u30b3\u30df\u30c3\u30af\u8a73\u7d30","leaf":"\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u8ffd\u52a0\u3068\u4e26\u3073\u66ff\u3048"},"play":{"title":"\u30b3\u30df\u30c3\u30af\u3092\u8aad\u3080","empty":"\u95b2\u89a7\u3067\u304d\u308b\u30b9\u30c8\u30fc\u30ea\u30fc\u306f\u3042\u308a\u307e\u305b\u3093"},"new":{"title":"\u65b0\u520a\u4f5c\u6210"},"edit":{"title":"\u30b3\u30df\u30c3\u30af\u5909\u66f4"},"create":{"title":"\u65b0\u520a\u4f5c\u6210"},"update":{"title":"\u30b3\u30df\u30c3\u30af\u5909\u66f4"},"destroy":{"title":"\u30b3\u30df\u30c3\u30af\u524a\u9664"},"submit":{"new":"\u30b3\u30df\u30c3\u30af\u4f5c\u6210","edit":"\u30b3\u30df\u30c3\u30af\u5909\u66f4"}},"comic_stories":{"index":{"title":"\u30b3\u30df\u30b9\u30c8\u4e00\u89a7"},"by_comic":{"title":"\u30b3\u30df\u30c3\u30af\u306e\u30b3\u30df\u30b9\u30c8\u4e00\u89a7"},"by_story":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u30b3\u30df\u30b9\u30c8\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b3\u30df\u30b9\u30c8\u4e00\u89a7"},"show":{"title":"\u30b3\u30df\u30b9\u30c8\u8a73\u7d30","t":"\u7b2c%{t}\u8a71"},"new":{"title":"\u30b3\u30df\u30b9\u30c8\u8ffd\u52a0"},"edit":{"title":"\u4e26\u3073\u66ff\u3048"},"create":{"title":"\u30b3\u30df\u30b9\u30c8\u8ffd\u52a0"},"update":{"title":"\u4e26\u3073\u66ff\u3048"},"destroy":{"title":"\u30b3\u30df\u30b9\u30c8\u524a\u9664"},"submit":{"new":"\u30b3\u30df\u30b9\u30c8\u4f5c\u6210","edit":"\u30b3\u30df\u30b9\u30c8\u5909\u66f4"},"move":"\u79fb\u52d5","append":{"story":"\u3053\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u8ffd\u52a0\u3059\u308b","comic":"\u3053\u306e\u30b3\u30df\u30c3\u30af\u306b\u8ffd\u52a0\u3059\u308b","new_stories":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b9\u30c8\u30fc\u30ea\u30fc","new_comics":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b3\u30df\u30c3\u30af","fresh_comics":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b3\u30df\u30c3\u30af"}},"stories":{"story_sheets_count":"%{c}P","index":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u4e00\u89a7","new":"\u65b0\u30b9\u30c8\u30fc\u30ea\u30fc"},"show":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u8a73\u7d30","leaf":"\u7528\u7d19\u306e\u8ffd\u52a0\u3068\u4e26\u3073\u66ff\u3048"},"play":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u8aad\u3080","empty":"\u95b2\u89a7\u3067\u304d\u308b\u7528\u7d19\u306f\u3042\u308a\u307e\u305b\u3093"},"by_comic":{"title":"\u30b3\u30df\u30c3\u30af\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u4e00\u89a7"},"by_sheet":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u4e00\u89a7"},"new":{"title":"\u65b0\u30b9\u30c8\u30fc\u30ea\u30fc\u4f5c\u6210"},"edit":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u5909\u66f4"},"create":{"title":"\u65b0\u30b9\u30c8\u30fc\u30ea\u30fc\u4f5c\u6210"},"update":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u5909\u66f4"},"destroy":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u524a\u9664"},"submit":{"new":"\u30b9\u30c8\u30fc\u30ea\u30fc\u4f5c\u6210","edit":"\u30b9\u30c8\u30fc\u30ea\u30fc\u5909\u66f4"},"move":"\u79fb\u52d5"},"story_sheets":{"index":{"title":"\u30b9\u30c8\u7d19\u4e00\u89a7"},"by_story":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u30b9\u30c8\u7d19\u4e00\u89a7"},"by_sheet":{"title":"\u7528\u7d19\u306e\u30b9\u30c8\u7d19\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b9\u30c8\u7d19\u4e00\u89a7"},"show":{"title":"\u30b9\u30c8\u7d19\u8a73\u7d30"},"new":{"title":"\u30b9\u30c8\u7d19\u8ffd\u52a0"},"edit":{"title":"\u4e26\u3073\u66ff\u3048"},"create":{"title":"\u30b9\u30c8\u7d19\u8ffd\u52a0"},"update":{"title":"\u4e26\u3073\u66ff\u3048"},"destroy":{"title":"\u30b9\u30c8\u7d19\u524a\u9664"},"submit":{"new":"\u30b9\u30c8\u7d19\u4f5c\u6210","edit":"\u30b9\u30c8\u7d19\u5909\u66f4"},"move":"\u79fb\u52d5","append":{"sheet":"\u3053\u306e\u7528\u7d19\u3092\u8ffd\u52a0\u3059\u308b","story":"\u3053\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u306b\u8ffd\u52a0\u3059\u308b","new_sheets":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u7528\u7d19","new_stories":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b9\u30c8\u30fc\u30ea\u30fc","fresh_stories":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30c8\u30fc\u30ea\u30fc"}},"sheets":{"index":{"title":"\u7528\u7d19\u4e00\u89a7","new":"\u65b0\u7d19"},"show":{"title":"\u7528\u7d19\u8a73\u7d30","copy":"\u7528\u7d19\u3092\u30b3\u30d4\u30fc\u3057\u305f\u3044","inspire":"\u30a4\u30f3\u30b9\u30d1\u30a4\u30e4"},"play":{"title":"\u7528\u7d19\u3092\u8aad\u3080","empty":"\u95b2\u89a7\u3067\u304d\u308b\u30b3\u30de\u306f\u3042\u308a\u307e\u305b\u3093"},"by_story":{"title":"\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u7528\u7d19\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u7528\u7d19\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u7528\u7d19\u4e00\u89a7"},"new":{"title":"\u7528\u7d19\u4f5c\u6210"},"edit":{"title":"\u7528\u7d19\u5909\u66f4"},"create":{"title":"\u7528\u7d19\u4f5c\u6210"},"update":{"title":"\u7528\u7d19\u5909\u66f4"},"destroy":{"title":"\u7528\u7d19\u524a\u9664"},"submit":{"new":"\u7528\u7d19\u4f5c\u6210","edit":"\u7528\u7d19\u5909\u66f4"},"hidden":"\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093","create_from_json":"json\u30c7\u30fc\u30bf\u304b\u3089\u30b3\u30de\u4f5c\u6210\u3059\u308b"},"sheet_panels":{"index":{"title":"\u7d19\u30b3\u30de\u4e00\u89a7"},"by_sheet":{"title":"\u7528\u7d19\u306e\u7d19\u30b3\u30de\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u7d19\u30b3\u30de\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u7d19\u30b3\u30de\u4e00\u89a7"},"show":{"title":"\u7d19\u30b3\u30de\u8a73\u7d30"},"new":{"title":"\u7d19\u30b3\u30de\u8ffd\u52a0"},"edit":{"title":"\u4e26\u3073\u66ff\u3048"},"create":{"title":"\u7d19\u30b3\u30de\u8ffd\u52a0"},"update":{"title":"\u4e26\u3073\u66ff\u3048"},"destroy":{"title":"\u7d19\u30b3\u30de\u524a\u9664"},"submit":{"new":"\u7d19\u30b3\u30de\u4f5c\u6210","edit":"\u7d19\u30b3\u30de\u5909\u66f4"},"move":"\u79fb\u52d5","append":{"panel":"\u3053\u306e\u30b3\u30de\u3092\u8ffd\u52a0\u3059\u308b","sheet":"\u3053\u306e\u7528\u7d19\u306b\u8ffd\u52a0\u3059\u308b","new_panels":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u30b3\u30de","new_sheets":"\u6700\u8fd1\u4f5c\u6210\u3057\u305f\u7528\u7d19","fresh_sheets":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7528\u7d19"}},"panels":{"index":{"title":"\u30b3\u30de\u4e00\u89a7"},"by_scroll":{"title":"\u30b9\u30af\u30ed\u30fc\u30eb\u306e\u30b3\u30de\u4e00\u89a7"},"by_sheet":{"title":"\u7528\u7d19\u306e\u30b3\u30de\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b3\u30de\u4e00\u89a7"},"by_speech_balloon_template":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u30b3\u30de\u4e00\u89a7"},"show":{"title":"\u30b3\u30de\u8a73\u7d30","copy":"\u30b3\u30de\u3092\u30b3\u30d4\u30fc\u3057\u305f\u3044","inspire":"\u30a4\u30f3\u30b9\u30d1\u30a4\u30e4"},"new":{"title":"\u30b3\u30de\u4f5c\u6210"},"edit":{"title":"\u30b3\u30de\u7de8\u96c6"},"create":{"title":"\u30b3\u30de\u4f5c\u6210"},"update":{"title":"\u30b3\u30de\u7de8\u96c6"},"destroy":{"title":"\u30b3\u30de\u524a\u9664"},"submit":{"new":"\u30b3\u30de\u4f5c\u6210\u3059\u308b","edit":"\u30b3\u30de\u5909\u66f4\u3059\u308b"},"create_from_json":"json\u30c7\u30fc\u30bf\u304b\u3089\u30b3\u30de\u4f5c\u6210\u3059\u308b","element_copy":"\u3064\u304b\u3093\u3067\u3044\u308b\u30b3\u30de\u306b\u30b3\u30d4\u30fc\u3057\u305f\u3044","inspire":"\u30a4\u30f3\u30b9\u30d1\u30a4\u30e4","filer":"\u30d5\u30a1\u30a4\u30e9\u30fc\u3067\u8868\u793a\u3059\u308b","hidden":"\u6a29\u9650\u304c\u3042\u308a\u307e\u305b\u3093","empty":"\u95b2\u89a7\u3067\u304d\u308b\u30b3\u30de\u306f\u3042\u308a\u307e\u305b\u3093"},"panel_pictures":{"index":{"title":"\u30b3\u30de\u7d75\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u30b3\u30de\u7d75\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30b3\u30de\u7d75\u4e00\u89a7"},"show":{"title":"\u30b3\u30de\u7d75\u8a73\u7d30"},"new":{"title":"\u30b3\u30de\u7d75\u4f5c\u6210"},"edit":{"title":"\u30b3\u30de\u7d75\u7de8\u96c6"},"create":{"title":"\u30b3\u30de\u7d75\u4f5c\u6210"},"update":{"title":"\u30b3\u30de\u7d75\u7de8\u96c6"},"destroy":{"title":"\u30b3\u30de\u7d75\u524a\u9664"},"submit":{"new":"\u30b3\u30de\u7d75\u4f5c\u6210\u3059\u308b","edit":"\u30b3\u30de\u7d75\u5909\u66f4\u3059\u308b"},"resource_picture":"\u8ffd\u52a0\u3059\u308b\u7d20\u6750","panel_picture":"\u5909\u66f4\u3059\u308b\u30b3\u30de\u7d75"},"speech_balloons":{"index":{"title":"\u30d5\u30ad\u30c0\u30b7\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u30d5\u30ad\u30c0\u30b7\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30d5\u30ad\u30c0\u30b7\u4e00\u89a7"},"by_speech_balloon_template":{"title":"\u30d5\u30ad\u30c0\u30b7\u306e\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4e00\u89a7"},"show":{"title":"\u30d5\u30ad\u30c0\u30b7\u8a73\u7d30"},"new":{"title":"\u30d5\u30ad\u30c0\u30b7\u4f5c\u6210"},"edit":{"title":"\u30d5\u30ad\u30c0\u30b7\u7de8\u96c6"},"create":{"title":"\u30d5\u30ad\u30c0\u30b7\u4f5c\u6210"},"update":{"title":"\u30d5\u30ad\u30c0\u30b7\u7de8\u96c6"},"destroy":{"title":"\u30d5\u30ad\u30c0\u30b7\u524a\u9664"},"submit":{"new":"\u30d5\u30ad\u30c0\u30b7\u4f5c\u6210\u3059\u308b","edit":"\u30d5\u30ad\u30c0\u30b7\u5909\u66f4\u3059\u308b"},"create_speech_balloon":"\u8ffd\u52a0\u3059\u308b\u30d5\u30ad\u30c0\u30b7","update_speech_balloon":"\u5909\u66f4\u3059\u308b\u30d5\u30ad\u30c0\u30b7"},"speeches":{"index":{"title":"\u30bb\u30ea\u30d5\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30bb\u30ea\u30d5\u4e00\u89a7"},"show":{"title":"\u30bb\u30ea\u30d5\u8a73\u7d30"},"submit":{"new":"\u30bb\u30ea\u30d5\u4f5c\u6210\u3059\u308b","edit":"\u30bb\u30ea\u30d5\u5909\u66f4\u3059\u308b"}},"balloons":{"index":{"title":"\u30d5\u30ad\u30c0\u30b7\u67a0\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u30d5\u30ad\u30c0\u30b7\u67a0\u4e00\u89a7"},"show":{"title":"\u30d5\u30ad\u30c0\u30b7\u67a0\u8a73\u7d30"},"submit":{"new":"\u30d5\u30ad\u30c0\u30b7\u67a0\u4f5c\u6210\u3059\u308b","edit":"\u30d5\u30ad\u30c0\u30b7\u67a0\u5909\u66f4\u3059\u308b"}},"ground_pictures":{"index":{"title":"\u7d75\u5730\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u7d75\u5730\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u7d75\u5730\u4e00\u89a7"},"show":{"title":"\u7d75\u5730\u8a73\u7d30"},"new":{"title":"\u7d75\u5730\u4f5c\u6210"},"edit":{"title":"\u7d75\u5730\u7de8\u96c6"},"create":{"title":"\u7d75\u5730\u4f5c\u6210"},"update":{"title":"\u7d75\u5730\u7de8\u96c6"},"destroy":{"title":"\u7d75\u5730\u524a\u9664"},"submit":"\u4f5c\u6210\u3059\u308b","create_ground_picture":"\u8ffd\u52a0\u3059\u308b\u7d75\u5730","update_ground_picture":"\u5909\u66f4\u3059\u308b\u7d75\u5730"},"ground_colors":{"index":{"title":"\u8272\u5730\u4e00\u89a7"},"by_panel":{"title":"\u30b3\u30de\u306e\u8272\u5730\u4e00\u89a7"},"by_author":{"title":"\u4f5c\u5bb6\u306e\u8272\u5730\u4e00\u89a7"},"show":{"title":"\u8272\u5730\u8a73\u7d30"},"new":{"title":"\u8272\u5730\u4f5c\u6210"},"edit":{"title":"\u8272\u5730\u7de8\u96c6"},"create":{"title":"\u8272\u5730\u4f5c\u6210"},"update":{"title":"\u8272\u5730\u7de8\u96c6"},"destroy":{"title":"\u8272\u5730\u524a\u9664"},"submit":"\u4f5c\u6210\u3059\u308b","create_color":"\u8ffd\u52a0\u3059\u308b\u8272\u5730","update_color":"\u5909\u66f4\u3059\u308b\u8272\u5730"},"original_pictures":{"index":{"title":"\u539f\u753b\u4e00\u89a7","history":"\u5c65\u6b74","status":"\u72b6\u614b","stop":"\u505c\u6b62\u3059\u308b","destroy":"\u524a\u9664\u3059\u308b"},"show":{"title":"\u539f\u753b\u8a73\u7d30","select_license":"\u753b\u50cf\u306e\u516c\u958b","select":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u9078\u629e\u30da\u30fc\u30b8\u3078","replace_picture":"\u753b\u50cf\u306e\u66f4\u65b0","replace":"\u753b\u50cf\u3092\u6539\u8a02\u3059\u308b","history":"\u516c\u958b\u5c65\u6b74"},"new":{"title":"\u539f\u753b\u6295\u7a3f"},"create":{"title":"\u539f\u753b\u6295\u7a3f"},"edit":{"title":"\u539f\u753b\u6539\u8a02"},"update":{"title":"\u539f\u753b\u6539\u8a02"},"destroy":{"title":"\u539f\u753b\u524a\u9664"},"history":{"title":"\u516c\u958b\u5c65\u6b74"},"upload":"\u6295\u7a3f\u3059\u308b","unpublished":"\u672a\u516c\u958b","stopped":"\u505c\u6b62\u4e2d","unlicensed":"\u30e9\u30a4\u30bb\u30f3\u30b9\u5f85\u3061","published":"\u516c\u958b\u4e2d","exist":{"announce":"\u3053\u306e\u753b\u50cf\u306f\u65e2\u306b\u516c\u958b\u3055\u308c\u3066\u3044\u307e\u3059","status":"\u72b6\u614b","head":"\u516c\u958b\u4e2d","tail":"\u5ec3\u76e4","disable":"\u505c\u6b62\u4e2d"},"submit":{"new":"\u6295\u7a3f\u3059\u308b"}},"pictures":{"index":{"title":"\u5b9f\u7d20\u6750\u4e00\u89a7"},"show":{"title":"\u5b9f\u7d20\u6750\u8a73\u7d30","announce":{"disable":"\u3053\u306e\u7d20\u6750\u306f\u914d\u5e03\u3092\u4e2d\u6b62\u3057\u3066\u3044\u307e\u3059\u3002\u7d20\u6750\u3068\u3057\u3066\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002","head":"\u7d20\u6750\u3068\u3057\u3066\u5229\u7528\u3067\u304d\u307e\u3059\u3002","tail":"\u3053\u306e\u753b\u50cf\u306f\u65e2\u306b\u6539\u8a02\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u7d20\u6750\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u306a\u3089\u3001\u3053\u3061\u3089(\u6700\u65b0\u7248)\u304c\u5229\u7528\u3067\u304d\u307e\u3059\u3002","owner":"\u3042\u306a\u305f\u306e\u753b\u50cf\u3067\u3059\u3002\u539f\u753b\u3092\u7ba1\u7406\u3059\u308b\u306a\u3089\u3001\u3053\u3061\u3089\u3092\u5229\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002","destroyed":"\u3053\u306e\u7d20\u6750\u306f\u524a\u9664\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u7d20\u6750\u3068\u3057\u3066\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u3002"}},"md5":{"title":"\u5b9f\u7d20\u6750MD5\u691c\u7d22\u4e00\u89a7"},"credit":{"title":"\u30af\u30ec\u30b8\u30c3\u30c8"}},"resource_pictures":{"index":{"title":"\u7d20\u6750\u4e00\u89a7"},"by_artist":{"title":"\u7d75\u5e2b\u306e\u7d20\u6750\u4e00\u89a7"},"by_license_group":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u7d20\u6750\u4e00\u89a7"},"by_license":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u7d20\u6750\u4e00\u89a7"},"show":{"title":"\u7d20\u6750\u8a73\u7d30"},"new":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u6700\u7d42\u78ba\u8a8d)","publish":"\u516c\u958b\u3059\u308b"},"create":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u6700\u7d42\u78ba\u8a8d)"},"destroy":{"title":"\u7d20\u6750\u524a\u9664"},"add_to_panel_for_panel_picture":"\u3053\u306e\u7d20\u6750\u3092\u3064\u304b\u3093\u3060\u30b3\u30de\u306b\u30b3\u30de\u7d75\u3068\u3057\u3066\u8ffd\u52a0\u3059\u308b","add_to_panel_for_ground_picture":"\u3053\u306e\u7d20\u6750\u3092\u3064\u304b\u3093\u3060\u30b3\u30de\u306b\u7d75\u5730\u3068\u3057\u3066\u8ffd\u52a0\u3059\u308b"},"resource_picture_pictures":{"index":{"title":"\u7d20\u6750\u5b9f\u7d20\u6750\u4e00\u89a7"},"show":{"title":"\u7d20\u6750\u5b9f\u7d20\u6750\u8a73\u7d30"},"by_original_picture":{"title":"\u539f\u753b\u306e\u7d20\u6750\u5b9f\u7d20\u6750\u4e00\u89a7"},"by_resource_picture":{"title":"\u7d20\u6750\u306e\u7d20\u6750\u5b9f\u7d20\u6750\u4e00\u89a7"},"by_picture":{"title":"\u5b9f\u7d20\u6750\u306e\u7d20\u6750\u5b9f\u7d20\u6750\u4e00\u89a7"}},"original_picture_license_groups":{"new":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u306e\u9078\u629e)","no_blank":"\u5fc5\u9808\u9805\u76ee"},"create":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u306e\u9078\u629e)"},"submit":{"new":"\u6b21\u3078"}},"original_picture_licenses":{"new":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)","no_blank":"\u5fc5\u9808\u9805\u76ee"},"create":{"title":"\u753b\u50cf\u306e\u516c\u958b(\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u9078\u629e)"},"submit":{"new":"\u6b21\u3078"}},"speech_balloon_templates":{"index":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4e00\u89a7"},"by_panel":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u30b3\u30de\u4e00\u89a7"},"by_system_picture":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u306e\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4e00\u89a7"},"show":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u8a73\u7d30"},"new":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4f5c\u6210"},"edit":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u7de8\u96c6"},"create":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4f5c\u6210"},"update":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u7de8\u96c6"},"destroy":{"title":"\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u524a\u9664"},"submit":{"new":"\u4f5c\u6210\u3059\u308b","edit":"\u5909\u66f4\u3059\u308b"},"add_to_panel":"\u3053\u306e\u30d5\u30ad\u30c0\u30b7\u3092\u3064\u304b\u3093\u3060\u30b3\u30de\u306b\u8ffd\u52a0\u3059\u308b"},"writing_formats":{"index":{"title":"\u8a18\u6cd5\u4e00\u89a7"},"show":{"title":"\u8a18\u6cd5\u8a73\u7d30"},"new":{"title":"\u8a18\u6cd5\u4f5c\u6210"},"edit":{"title":"\u8a18\u6cd5\u7de8\u96c6"},"create":{"title":"\u8a18\u6cd5\u4f5c\u6210"},"update":{"title":"\u8a18\u6cd5\u7de8\u96c6"},"destroy":{"title":"\u8a18\u6cd5\u524a\u9664"},"submit":{"new":"\u4f5c\u6210\u3059\u308b","edit":"\u5909\u66f4\u3059\u308b"}},"license_groups":{"index":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u4e00\u89a7"},"licenses":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"show":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u8a73\u7d30"},"new":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u4f5c\u6210"},"edit":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u7de8\u96c6"},"create":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u4f5c\u6210"},"update":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u7de8\u96c6"},"destroy":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u524a\u9664"},"submit":{"new":"\u4f5c\u6210\u3059\u308b","edit":"\u5909\u66f4\u3059\u308b"}},"licenses":{"index":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"resource_pictures":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u7d20\u6750\u4e00\u89a7"},"by_license_group":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30b0\u30eb\u30fc\u30d7\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"by_system_picture":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"show":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u8a73\u7d30"},"search":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u691c\u7d22"},"new":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u4f5c\u6210"},"edit":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u7de8\u96c6"},"create":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u4f5c\u6210"},"update":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u7de8\u96c6"},"destroy":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u524a\u9664"},"submit":{"new":"\u4f5c\u6210\u3059\u308b","edit":"\u5909\u66f4\u3059\u308b"}},"authors":{"index":{"title":"\u4f5c\u5bb6\u4e00\u89a7"},"show":{"title":"\u4f5c\u5bb6\u8a73\u7d30","to_scrolls":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30af\u30ed\u30fc\u30eb","to_scroll_panels":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30af\u30b3\u30de","to_comics":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b3\u30df\u30c3\u30af","to_comic_stories":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b3\u30df\u30b9\u30c8","to_stories":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30c8\u30fc\u30ea\u30fc","to_story_sheets":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b9\u30c8\u7d19","to_sheets":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7528\u7d19","to_sheet_panels":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7d19\u30b3\u30de","to_panels":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30b3\u30de","to_panel_pictures":"\u6700\u8fd1\u30b3\u30de\u3067\u4f7f\u3063\u305f\u30b3\u30de\u7d75","to_speech_balloons":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u30d5\u30ad\u30c0\u30b7","to_ground_pictures":"\u6700\u8fd1\u30b3\u30de\u3067\u4f7f\u3063\u305f\u7d75\u5730","to_ground_colors":"\u6700\u8fd1\u30b3\u30de\u3067\u4f7f\u3063\u305f\u8272\u5730"},"new":{"title":"\u4f5c\u5bb6\u767b\u9332","announce":"\u4f5c\u5bb6\u767b\u9332\u3057\u3066\u304f\u3060\u3055\u3044"},"edit":{"title":"\u4f5c\u5bb6\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u7de8\u96c6"},"create":{"title":"\u4f5c\u5bb6\u767b\u9332"},"update":{"title":"\u4f5c\u5bb6\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u7de8\u96c6"},"destroy":{"title":"\u4f11\u7b46"},"submit":{"new":"\u767b\u9332","edit":"\u5909\u66f4"}},"artists":{"index":{"title":"\u7d75\u5e2b\u4e00\u89a7"},"show":{"title":"\u7d75\u5e2b\u8a73\u7d30","to_resource_pictures":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7d20\u6750"},"resource_pictures":{"title":"\u6700\u8fd1\u66f4\u65b0\u3057\u305f\u7d20\u6750"},"new":{"title":"\u7d75\u5e2b\u767b\u9332"},"edit":{"title":"\u7d75\u5e2b\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u7de8\u96c6"},"create":{"title":"\u7d75\u5e2b\u767b\u9332"},"update":{"title":"\u7d75\u5e2b\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u7de8\u96c6"},"destroy":{"title":"\u6d3b\u52d5\u505c\u6b62"},"submit":{"new":"\u767b\u9332","edit":"\u5909\u66f4"}},"system_pictures":{"index":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u4e00\u89a7"},"speech_balloon_templates":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u306e\u30d5\u30ad\u30c0\u30b7\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u4e00\u89a7"},"licenses":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u306e\u30e9\u30a4\u30bb\u30f3\u30b9\u4e00\u89a7"},"show":{"title":"\u30b7\u30b9\u30c6\u30e0\u753b\u50cf\u8a73\u7d30"}},"provider_sources":{"index":{"title":"\u8cb8\u624b\u6587\u732e\u4e00\u89a7","url":"\u8cb8\u624b\u6587\u732eurl","submit":"\u30a4\u30f3\u30dd\u30fc\u30c8"},"import":{"title":"\u8cb8\u624b\u6587\u732e\u306e\u30a4\u30f3\u30dd\u30fc\u30c8","result":"\u4ef6\u306e\u8cb8\u624b\u6587\u732e\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u307e\u3057\u305f\u3002","ok":"\u3053\u306e\u8cb8\u624b\u6587\u732e\u306f\u6b63\u5e38\u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3057\u305f\u3002","ok_but":"\u3053\u306e\u8cb8\u624b\u6587\u732e\u3067\u30a4\u30f3\u30dd\u30fc\u30c8\u3067\u304d\u306a\u304b\u3063\u305f\u8cb8\u624b\u304c\u3042\u308a\u307e\u3059","ok_reason":"\u8cb8\u624b\u6587\u732e\u304c\u58ca\u308c\u3066\u3044\u308b\u3001\u30b5\u30fc\u30d0\u306e\u8a2d\u5b9a\u304c\u6b63\u3057\u304f\u306a\u3044\u3001\u306a\u3069\u306e\u7406\u7531\u304c\u8003\u3048\u3089\u308c\u307e\u3059\u3002","ng":"\u8cb8\u624b\u6587\u732e\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002","ng_reason":"\u8cb8\u624b\u6587\u732e\u304c\u306a\u3044\u3001\u8cb8\u624b\u6587\u732e\u3092\u7ba1\u7406\u3057\u3066\u3044\u308b\u30b5\u30fc\u30d0\u304c\u5fdc\u7b54\u3057\u306a\u3044\u3001\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3055\u308c\u3066\u3044\u306a\u3044\u3001\u306a\u3069\u306e\u7406\u7531\u304c\u8003\u3048\u3089\u308c\u307e\u3059\u3002","to_providers":"\u8cb8\u624b\u3092\u4e00\u89a7\u3059\u308b","to_provider_sources":"\u8cb8\u624b\u6587\u732e\u4e00\u89a7\u3078\u623b\u308b"}},"providers":{"index":{"title":"\u8cb8\u624b\u4e00\u89a7","submit":"\u30a4\u30f3\u30dd\u30fc\u30c8"},"show":{"title":"\u8cb8\u624b\u8a73\u7d30","user_open":"\u30b5\u30a4\u30c8\u3092\u958b\u304f","demander_open":"\u8cb8\u624b\u3092\u958b\u304f","to_provider_status":"\u501f\u53d7\u72b6\u6cc1","destroy":"\u8cb8\u624b\u3092\u524a\u9664\u3059\u308b"},"new":{"title":"\u8cb8\u624b\u767b\u9332"},"edit":{"title":"\u8cb8\u624b\u7de8\u96c6"},"status":"\u72b6\u614b","open":"\u958b\u304f","wait":"\u5f85\u6a5f\u4e2d\u306e\u8cb8\u624b\u3060\u3051\u3092\u8868\u793a\u3059\u308b","all":"\u3059\u3079\u3066\u306e\u8cb8\u624b\u3092\u8868\u793a\u3059\u308b","to_provider_status":"\u501f\u53d7\u72b6\u6cc1\u306b\u5207\u308a\u66ff\u3048\u308b"},"provider_statuses":{"index":{"title":"\u501f\u53d7\u72b6\u6cc1\u4e00\u89a7"},"show":{"title":"\u501f\u53d7\u72b6\u6cc1\u8a73\u7d30","user_open":"\u30b5\u30a4\u30c8\u3092\u958b\u304f","demander_open":"\u30b5\u30a4\u30c8\u306e\u501f\u624b\u5411\u3051\u30da\u30fc\u30b8\u3092\u958b\u304f","to_provider":"\u8cb8\u624b","receive_announce":"\u501f\u53d7\u3059\u308b\u306b\u306f\u501f\u624b\u3068\u306a\u3063\u3066\u501f\u53d7\u7533\u8acb\u3059\u308b\u3002","receive_start":"\u3053\u306e\u8cb8\u624b\u304b\u3089\u306e\u501f\u53d7\u3092\u958b\u59cb\u3059\u308b","receive_stop":"\u501f\u53d7\u3092\u505c\u6b62\u3059\u308b","import":"\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b","licenses_import":"\u30e9\u30a4\u30bb\u30f3\u30b9\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b","artists_import":"\u7d75\u5e2b\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b","original_pictures_import":"\u7d20\u6750\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b"},"new":{"title":"\u501f\u53d7\u72b6\u6cc1\u767b\u9332"},"edit":{"title":"\u501f\u53d7\u72b6\u6cc1\u7de8\u96c6"},"create":{"title":"\u501f\u53d7\u72b6\u6cc1\u767b\u9332"},"update":{"title":"\u501f\u53d7\u72b6\u6cc1\u7de8\u96c6"},"licenses_import":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u30a4\u30f3\u30dd\u30fc\u30c8","success":"\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f","fail":"\u6b21\u306e\u30e9\u30a4\u30bb\u30f3\u30b9(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002\u30e9\u30a4\u30bb\u30f3\u30b9\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u72b6\u6cc1\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002","to_show":"\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b"},"artists_import":{"title":"\u7d75\u5e2b\u30a4\u30f3\u30dd\u30fc\u30c8","success":"\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f","fail":"\u6b21\u306e\u7d75\u5e2b(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002","to_show":"\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b"},"original_pictures_import":{"title":"\u539f\u753b\u30a4\u30f3\u30dd\u30fc\u30c8","success":"\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f","fail":"\u6b21\u306e\u539f\u753b(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002","to_show":"\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b"},"pictures_import":{"fail":"\u6b21\u306e\u5b9f\u7d20\u6750(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002"},"resource_pictures_import":{"fail":"\u6b21\u306e\u7d20\u6750(%{size}\u4ef6)\u3067\u30a8\u30e9\u30fc\u304c\u3042\u308a\u307e\u3057\u305f\u3002"},"import":{"title":"\u30a4\u30f3\u30dd\u30fc\u30c8","success":"\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f","to_show":"\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b"},"status":"\u72b6\u614b","open":"\u958b\u304f","to_provider":"\u8cb8\u624b\u306b\u5207\u308a\u66ff\u3048\u308b","wait":"\u5f85\u6a5f\u4e2d\u306e\u8cb8\u624b\u306e\u501f\u53d7\u72b6\u6cc1\u3060\u3051\u3092\u8868\u793a\u3059\u308b","all":"\u3059\u3079\u3066\u306e\u8cb8\u624b\u306e\u501f\u53d7\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b","flash":{"notice":{"created":"\u501f\u53d7\u3092\u958b\u59cb\u3057\u307e\u3057\u305f\u3002","not_created":"\u501f\u53d7\u3092\u958b\u59cb\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002","stopped":"\u501f\u53d7\u3092\u505c\u6b62\u3057\u307e\u3057\u305f\u3002","not_stopped":"\u501f\u53d7\u3092\u505c\u6b62\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"}}},"demanders":{"index":{"title":"\u501f\u624b\u4e00\u89a7","to_show":"\u30b5\u30a4\u30c8\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u8868\u793a\u3059\u308b","request":"\u3053\u306e\u8cb8\u624b\u306b\u501f\u53d7\u7533\u8acb\u3059\u308b","stop":"\u501f\u53d7\u3092\u4e2d\u6b62\u3059\u308b"},"show":{"title":"\u501f\u624b\u8a73\u7d30"},"new":{"title":"\u501f\u624b\u767b\u9332"},"edit":{"title":"\u501f\u624b\u7de8\u96c6"},"create":{"title":"\u501f\u624b\u767b\u9332"},"update":{"title":"\u501f\u624b\u7de8\u96c6"},"destroy":{"title":"\u9000\u4f1a"},"status":"\u72b6\u614b","flash":{"notice":{"not_found":"\u30b5\u30a4\u30c8\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u767b\u9332\u3057\u3066\u304f\u3060\u3055\u3044\u3002","requested":"\u501f\u53d7\u7533\u8acb\u3057\u307e\u3057\u305f\u3002","not_requested":"\u501f\u53d7\u7533\u8acb\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002","stopped":"\u501f\u53d7\u3092\u505c\u6b62\u3057\u307e\u3057\u305f\u3002","not_stopped":"\u501f\u53d7\u3092\u505c\u6b62\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"}}},"demander_statuses":{"index":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u4e00\u89a7"},"show":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u8a73\u7d30","demander_open":"\u30b5\u30a4\u30c8\u3092\u958b\u304f","approve_announce":"\u501f\u53d7\u7533\u8acb\u306b\u5bfe\u3057\u3066\u8fd4\u7b54\u3057\u3066\u304f\u3060\u3055\u3044\u3002","approve":"\u3053\u306e\u501f\u624b\u306b\u8cb8\u4e0e\u3092\u958b\u59cb\u3059\u308b","reject":"\u3053\u306e\u501f\u624b\u306b\u306f\u8cb8\u4e0e\u3057\u306a\u3044","stop":"\u3053\u306e\u501f\u624b\u306e\u8cb8\u4e0e\u3092\u505c\u6b62\u3059\u308b","reapprove":"\u3053\u306e\u501f\u624b\u306e\u5426\u6c7a\u3092\u8986\u3057\u3066\u8cb8\u4e0e\u3059\u308b"},"new":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u767b\u9332"},"edit":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u7de8\u96c6"},"create":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u767b\u9332"},"update":{"title":"\u8cb8\u4e0e\u72b6\u6cc1\u7de8\u96c6"},"status":"\u72b6\u614b","open":"\u958b\u304f","wait":"\u7533\u8acb\u4e2d\u306e\u501f\u624b\u306e\u8cb8\u4e0e\u72b6\u6cc1\u3060\u3051\u3092\u8868\u793a\u3059\u308b","all":"\u3059\u3079\u3066\u306e\u501f\u624b\u306e\u8cb8\u4e0e\u72b6\u6cc1\u3092\u8868\u793a\u3059\u308b","flash":{"notice":{"rejected":"\u8cb8\u4e0e\u3092\u5426\u6c7a\u3057\u307e\u3057\u305f\u3002","not_rejected":"\u8cb8\u4e0e\u3092\u5426\u6c7a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002","approved":"\u8cb8\u4e0e\u3092\u627f\u8a8d\u3057\u307e\u3057\u305f\u3002","not_approved":"\u8cb8\u4e0e\u3092\u627f\u8a8d\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"}}},"provider_licenses":{"index":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u5bfe\u7167\u8868\u4e00\u89a7"},"show":{"title":"\u30e9\u30a4\u30bb\u30f3\u30b9\u5bfe\u7167\u8868\u8a73\u7d30"}},"provider_artists":{"index":{"title":"\u7d75\u5e2b\u5bfe\u7167\u8868\u4e00\u89a7"},"show":{"title":"\u7d75\u5e2b\u5bfe\u7167\u8868\u8a73\u7d30"}},"provider_original_pictures":{"index":{"title":"\u539f\u753b\u5bfe\u7167\u8868\u4e00\u89a7"},"show":{"title":"\u539f\u753b\u5bfe\u7167\u8868\u8a73\u7d30"}},"link":{"new":"\u65b0\u898f\u4f5c\u6210","edit":"\u7de8\u96c6","destroy":"\u524a\u9664","back":"\u623b\u308b","marker":"\u25a0","catch":"\u63b4\u3080"},"editor":"\u7de8\u96c6\u30e1\u30cb\u30e5\u30fc","credit":{"digest":"\u7c21\u6613\u30af\u30ec\u30b8\u30c3\u30c8","full":"\u30af\u30ec\u30b8\u30c3\u30c8"},"tab":{"creator":{"home":"\u4f5c\u308b\u30fb\u898b\u305b\u308b","comic":"\u30b3\u30df\u30c3\u30af","story":"\u30b9\u30c8\u30fc\u30ea\u30fc","sheet":"\u7528\u7d19","scroll":"\u30b9\u30af\u30ed\u30fc\u30eb","panel":"\u30b3\u30de","original_picture":"\u539f\u753b","resource_picture":"\u7d20\u6750","catch":"\u3064\u304b\u3093\u3067\u3044\u308b\u30b3\u30de"},"reader":{"title":"\u8aad\u3080\u30fb\u63a2\u3059"},"demander":{"title":"\u501f\u308a\u53d7\u3051\u308b"},"system":{"title":"\u7ba1\u7406\u8005\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9","browse":"\u751f\u30c7\u30fc\u30bf","approve":"\u7ba1\u7406\u8005\u627f\u8a8d","port":"\u7d20\u6750\u8cb8\u501f","token":"\u30c8\u30fc\u30af\u30f3","layout":"\u30ec\u30a4\u30a2\u30a6\u30c8","test":"\u30c6\u30b9\u30c8\u7248","production":"\u88fd\u54c1\u7248"}},"filer":{"header":{"pick":"\u9078\u629e","symbol":"\u753b\u50cf","caption":"\u898b\u51fa\u3057","summary":"\u8981\u7d04","icon":"\u30d7\u30ed\u30d5","date":"\u65e5\u6642","edit":"\u7de8\u96c6"},"empty":"\u95b2\u89a7\u3067\u304d\u308b\u30a2\u30a4\u30c6\u30e0\u306f\u3042\u308a\u307e\u305b\u3093"}}};
\ No newline at end of file
index a1fcd70..27d794b 100644 (file)
@@ -13,6 +13,17 @@ class Pettanr.ScrollPanel extends Peta.Leaf
     t: null\r
   } \r
   \r
+  @pick_item_name: () ->\r
+    'panel'\r
+  \r
+  @traceable_item_names: () ->\r
+    []\r
+  \r
+  pick: (picked_item) ->\r
+    {\r
+      panel_id: picked_item.get('id'),\r
+    }\r
+  \r
   @licensed_pictures: (scroll_panels) ->\r
     panels = _.filter(scroll_panels, (sp) ->\r
       sp.has_panel()\r
index 33f646b..cb75eb1 100644 (file)
@@ -4,28 +4,50 @@ class Pettanr.Views.Artist.ShowModule.Header extends Pettanr.Views.Show.Header
   initialize: (options) ->\r
     super(options)\r
   \r
+class Pettanr.Views.Artist.ShowModule.ResourcePictures extends Backbone.View\r
+  \r
+  initialize: (options) ->\r
+    super(options)\r
+    @item = options.item\r
+  \r
+  render: () ->\r
+    params = {\r
+      controller: 'resource_pictures', action: 'by_artist', id: @item.get('id'),\r
+      page_size: 5\r
+    }\r
+    @list = Locmare.ListGroup.list(\r
+      params['controller'], params['action'], params\r
+    )\r
+    @list.open(() =>\r
+      pager = Locmare.ListGroupModule.LibModule.Pager.factory(@list.page_status, params)\r
+      filer = new Locmare.Filer({\r
+        item_name: @list.item_name, \r
+        items: @list.items(), \r
+        pager: pager\r
+      })\r
+      @listenTo(filer, 'http_get', @http_get)\r
+      this.$el.append(filer.render().el)\r
+    )\r
+    this\r
+  \r
+  http_get: (url) ->\r
+    @trigger('http_get', url)\r
+  \r
 class Pettanr.Views.Artist.ShowModule.Body extends Backbone.View\r
   \r
   initialize: (options) ->\r
     super(options)\r
     @item = options.item\r
+    @resource_pictures = new Pettanr.Views.Artist.ShowModule.ResourcePictures({item: @item})\r
   \r
   render: () ->\r
     this.$el.html('')\r
-    resource_pictures_params = {controller: 'resource_pictures', action: 'by_artist', id: @item.get('id')}\r
-    resource_pictures_controller = Manifest.manifest().controllers[resource_pictures_params['controller']]\r
-    resource_pictures_action = resource_pictures_controller.actions[resource_pictures_params['action']]\r
-    @resource_pictures_url = resource_pictures_action.url(resource_pictures_params)\r
-    @resource_pictures_caption = new Tag.A({\r
-      attr: {href: '/' + @resource_pictures_url},\r
-      content: Pettanr.AppHelper.t_m('ResourcePicture')\r
-    })\r
-    @listenTo(@resource_pictures_caption, 'click', @click_resource_pictures_caption)\r
-    this.$el.append(@resource_pictures_caption.render().el)\r
+    @listenTo(@resource_pictures, 'http_get', @http_get)\r
+    this.$el.append(@resource_pictures.render().el)\r
     this\r
   \r
-  click_resource_pictures_caption: () ->\r
-    @trigger('http_get', @resource_pictures_url)\r
+  http_get: (url) ->\r
+    @trigger('http_get', url)\r
   \r
 class Pettanr.Views.Artist.Show extends Backbone.View\r
   tagName: 'div'\r
diff --git a/app/assets/javascripts/views/scroll_panels/new_element.js.coffee b/app/assets/javascripts/views/scroll_panels/new_element.js.coffee
new file mode 100644 (file)
index 0000000..b1ec806
--- /dev/null
@@ -0,0 +1,75 @@
+class Pettanr.Views.ScrollPanel.NewElementLauncher extends Backbone.View\r
+  \r
+  initialize: (options) ->\r
+    @parent = options.parent\r
+    @model = options.model\r
+    @links_conf = {}\r
+    _.extend(@links_conf, {\r
+      users: {\r
+        caption: "User's",\r
+        params: {\r
+          controller: @model.pick_model().path_name(), action: 'index',\r
+          page_size: 8, format: 'html'\r
+        }\r
+      }\r
+    })\r
+    _.extend(@links_conf, {\r
+      mine: {\r
+        caption: 'Mine',\r
+        params: {\r
+          controller: @model.pick_model().path_name(), action: 'by_author', id: Pettanr.cache.operators.author.get('id'), \r
+          page_size: 8, format: 'html'\r
+        }\r
+      }\r
+    })\r
+    _.extend(@links_conf, {\r
+      authors: {\r
+        caption: "Authors",\r
+        params: {\r
+          controller: 'authors', action: 'index',\r
+          page_size: 8, format: 'html'\r
+        }\r
+      }\r
+    })\r
+  \r
+  render: () ->\r
+    this.$el.html('')\r
+    header = new Editor.EditorModule.DockModule.NewElementLauncherHeader({model: @model})\r
+    this.$el.append(header.render().el)\r
+    @add_links()\r
+    this\r
+  \r
+  get_action: (params) ->\r
+    controller = Manifest.manifest().controllers[params['controller']]\r
+    controller.actions[params['action']]\r
+  \r
+  add_links: () ->\r
+    _.each @links_conf, (conf, name) =>\r
+      @add_link(name, conf.caption, @get_action(conf.params).url(conf.params))\r
+  \r
+  add_link: (name, caption, url) ->\r
+    link = new Tag.A({\r
+      attr: {href: '/' + url},\r
+      content: caption\r
+    })\r
+    span = new Tag.Span({\r
+      content: link.render().el\r
+    })\r
+    @listenTo(link, 'click', this['click_' + name])\r
+    this.$el.append(span.render().el)\r
+  \r
+  click_users: () ->\r
+    params = @links_conf.users.params\r
+    url = @get_action(params).url(params)\r
+    @trigger('http_get', url)\r
+  \r
+  click_mine: () ->\r
+    params = @links_conf.mine.params\r
+    url = @get_action(params).url(params)\r
+    @trigger('http_get', url)\r
+  \r
+  click_authors: () ->\r
+    params = @links_conf.authors.params\r
+    url = @get_action(params).url(params)\r
+    @trigger('http_get', url)\r
+  \r
index f5e0ff2..83ac409 100644 (file)
@@ -204,6 +204,7 @@ class Pettanr.Views.Scroll.PlayModule.Panel extends Backbone.View
       @listenTo(@footer, 'click:insert', @click_insert)\r
       @listenTo(@footer, 'click:move', @click_move)\r
       @listenTo(@footer, 'click:edit', @click_edit)\r
+      @listenTo(@footer, 'click:destroy', @click_destroy)\r
       this.$el.append(body.render().el)\r
       this.$el.append(btn.render().el)\r
       this.$el.append(@footer.render().el)\r
@@ -241,6 +242,8 @@ class Pettanr.Views.Scroll.PlayModule.Panel extends Backbone.View
   click_destroy: () ->\r
     @trigger('click:destroy', this)\r
   \r
+class Pettanr.Views.Scroll.PlayModule.Append extends Tag.Div\r
+  \r
 class Pettanr.Views.Scroll.PlayModule.Panels extends Backbone.View\r
   tagName: 'ul'\r
   className: 'player'\r
@@ -256,38 +259,62 @@ class Pettanr.Views.Scroll.PlayModule.Panels extends Backbone.View
     this.$el.html('')\r
     _.each @items, (scroll_panel) =>\r
       return if not scroll_panel.has_panel()\r
-      panel_view = new Pettanr.Views.Scroll.PlayModule.Panel({\r
-        scroll: @binder,scroll_panel: scroll_panel,\r
-      })\r
-      @listenTo(panel_view, 'ready', @ready)\r
-      @listenTo(panel_view, 'click:insert', @click_insert)\r
-      @listenTo(panel_view, 'click:move', @click_move)\r
-      @listenTo(panel_view, 'click:destroy', @click_destroy)\r
+      panel_view = @create_panel_view(scroll_panel)\r
       this.$el.append(panel_view.clear().el)\r
-      @views.push(panel_view)\r
     rb = new Tag.RowBreak()\r
     this.$el.append(rb.render().el)\r
+    link = new Tag.A({\r
+      attr: {href: '/scroll_panels/new'},\r
+      content: I18n.t('scroll_panels.player.append')\r
+    })\r
+    @listenTo(link, 'click', @click_append)\r
+    @appender = new Pettanr.Views.Scroll.PlayModule.Append({\r
+      content: link.render().el\r
+    })\r
+    this.$el.append(@appender.render().el)\r
     this\r
   \r
+  create_panel_view: (scroll_panel) ->\r
+    panel_view = new Pettanr.Views.Scroll.PlayModule.Panel({\r
+      scroll: @binder, scroll_panel: scroll_panel,\r
+    })\r
+    @listenTo(panel_view, 'ready', @ready)\r
+    @listenTo(panel_view, 'click:insert', @click_insert)\r
+    @listenTo(panel_view, 'click:move', @click_move)\r
+    @listenTo(panel_view, 'click:destroy', @click_destroy)\r
+    @views.push(panel_view)\r
+    panel_view\r
+  \r
   ready: (panel) ->\r
     this.credits.push(panel.licensed_pictures())\r
   \r
   click_insert: (panel_view) ->\r
     @trigger('click:insert')\r
     @dialog = new Editor.Player.PanelInsertDialog({\r
-      parent: this\r
+      parent: this, binder: @binder, target_model: Pettanr.ScrollPanel,\r
+      insert_point: panel_view\r
     })\r
+    @listenTo(@dialog, 'pick', @pick)\r
+    @listenTo(@dialog, 'dialog:open', @open_dialog)\r
+    @listenTo(@dialog, 'dialog:close', @close_dialog)\r
     this.$el.append(@dialog.render().el)\r
-    _this = this\r
-    @dialog.$el.dialog({\r
-      autoOpen: false,\r
-      width: 500, \r
-      height: 500,\r
-      close: (ui, event) ->\r
-        _this.remove()\r
-    })\r
-    @listenTo(@dialog, 'success', @success)\r
-    @dialog.start(panel_view.panel)\r
+    @dialog.start()\r
+  \r
+  click_append: () ->\r
+    @click_insert(@appender)\r
+  \r
+  pick: (new_item, insert_point) ->\r
+    panel_view = @create_panel_view(new_item)\r
+    ul = this.$el[0]\r
+    li = insert_point.$el[0]\r
+    ul.insertBefore(panel_view.clear().el, li)\r
+    @dialog.remove()\r
+  \r
+  open_dialog: (dialog) ->\r
+    @trigger('dialog:open', dialog)\r
+  \r
+  close_dialog: (dialog) ->\r
+    @trigger('dialog:close', dialog)\r
   \r
   click_move: (panel_view) ->\r
     @trigger('click:move')\r
@@ -312,7 +339,14 @@ class Pettanr.Views.Scroll.PlayModule.Panels extends Backbone.View
       panel_view.show_insert_point\r
   \r
   click_destroy: (panel_view) ->\r
-    @trigger('click:destroy')\r
+    success = (model, response) =>\r
+      panel_view.remove()\r
+      @trigger('click:destroy')\r
+    Pettanr.Proxy.destroy(panel_view.scroll_panel, {success: success})\r
+  \r
+  remove_panel_view: (panel_view) ->\r
+    @views = _.without(@views, panel_view)\r
+    panel_view.remove()\r
   \r
 class Pettanr.Views.Scroll.PlayModule.Body extends Backbone.View\r
   tagName: 'div'\r
index dbb74e9..0dbc41a 100644 (file)
@@ -903,7 +903,8 @@ ja:
       before_insert: この直前にコマを挿入
       append: コマを追加
       destroy: 取り外す
-      dialog: このコマを移動
+      insert_dialog: 選択したコマを挿入
+      move_dialog: このコマを移動
     append:
       panel: このコマを追加する
       scroll: このスクロールに追加する