[Bf-extensions-cvs] [34dbc72c] master: BlenderKit: rename all mentions of standard plan to full

Vilem Duha noreply at git.blender.org
Mon Jun 17 16:14:31 CEST 2019


Commit: 34dbc72c885c7ec49f913b0e4410d068eff28f7c
Author: Vilem Duha
Date:   Mon Jun 17 00:25:50 2019 +0200
Branches: master
https://developer.blender.org/rBA34dbc72c885c7ec49f913b0e4410d068eff28f7c

BlenderKit: rename all mentions of standard plan to full

===================================================================

M	blenderkit/download.py
M	blenderkit/search.py
M	blenderkit/ui_panels.py

===================================================================

diff --git a/blenderkit/download.py b/blenderkit/download.py
index 647c15ce..b0830a4e 100644
--- a/blenderkit/download.py
+++ b/blenderkit/download.py
@@ -744,7 +744,7 @@ def get_download_url(asset_data, scene_id, api_key, tcom=None):
         return True
 
     if r.status_code == 403:
-        r = 'You need Standard plan to get this item.'
+        r = 'You need Full plan to get this item.'
         tcom.report = r
         r1 = 'All materials and brushes are aviable for free. Only users registered to Standart plan can use all models.'
         tasks_queue.add_task((ui.add_report, (r1, 5, colors.RED)))
diff --git a/blenderkit/search.py b/blenderkit/search.py
index 004586cf..a2a8bb40 100644
--- a/blenderkit/search.py
+++ b/blenderkit/search.py
@@ -482,7 +482,7 @@ def get_random_tip(mdata):
              "Click on brushes to link them into scene.",
              "All materials are free.",
              "All brushes are free.",
-             "Locked models are available if you subscribe to standard plan.",
+             "Locked models are available if you subscribe to Full plan.",
              "Login to upload your own models, materials or brushes.",
              "Use 'A' key to search assets by same author.",
              "Use 'W' key to open Authors webpage.", ]
diff --git a/blenderkit/ui_panels.py b/blenderkit/ui_panels.py
index 480d1afe..ef89ddb0 100644
--- a/blenderkit/ui_panels.py
+++ b/blenderkit/ui_panels.py
@@ -273,11 +273,11 @@ def draw_panel_model_search(self, context):
     layout.prop(props, "search_keywords", text="", icon='VIEWZOOM')
 
     icon = 'NONE'
-    if props.report == 'You need Standard plan to get this item.':
+    if props.report == 'You need Full plan to get this item.':
         icon = 'ERROR'
     label_multiline(layout, text=props.report, icon=icon)
-    if props.report == 'You need Standard plan to get this item.':
-        layout.operator("wm.url_open", text="Get Standard plan", icon='URL').url = paths.BLENDERKIT_PLANS
+    if props.report == 'You need Full plan to get this item.':
+        layout.operator("wm.url_open", text="Get Full plan", icon='URL').url = paths.BLENDERKIT_PLANS
 
     layout.prop(props, "search_style")
     layout.prop(props, "free_only")



More information about the Bf-extensions-cvs mailing list