Skip to content

Commit 47f2420

Browse files
committed
improve description and wording
1 parent 8ac9aff commit 47f2420

1 file changed

Lines changed: 23 additions & 24 deletions

File tree

scripts/3-report/gcs_report.py

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def gcs_intro(args):
113113

114114
def plot_products(args):
115115
"""
116-
Create plots for CC legal tool product totals and percentages
116+
Create a plot for CC legal tool product totals and percentages
117117
"""
118118
LOGGER.info(plot_products.__doc__.strip())
119119
file_path = shared.path_join(
@@ -152,14 +152,14 @@ def plot_products(args):
152152
SECTION_TITLE,
153153
title,
154154
image_path,
155-
"Plots showing Creative Commons (CC) legal tool product totals and"
155+
"The plot shows Creative Commons (CC) legal tool product totals and"
156156
" percentages.",
157157
)
158158

159159

160160
def plot_tool_status(args):
161161
"""
162-
Create plots for the CC legal tool status totals and percentages
162+
Create a plot for the CC legal tool status totals and percentages
163163
"""
164164
LOGGER.info(plot_tool_status.__doc__.strip())
165165
file_path = shared.path_join(
@@ -196,14 +196,14 @@ def plot_tool_status(args):
196196
SECTION_TITLE,
197197
title,
198198
image_path,
199-
"Plots showing Creative Commons (CC) legal tool status totals and"
199+
"The plot shows Creative Commons (CC) legal tool status totals and"
200200
" percentages.",
201201
)
202202

203203

204204
def plot_latest_tools(args):
205205
"""
206-
Create plots for latest CC legal tool totals and percentages
206+
Create a plot for latest CC legal tool totals and percentages
207207
"""
208208
LOGGER.info(plot_latest_tools.__doc__.strip())
209209
file_path = shared.path_join(
@@ -240,14 +240,14 @@ def plot_latest_tools(args):
240240
SECTION_TITLE,
241241
title,
242242
image_path,
243-
"Plots showing latest Creative Commons (CC) legal tool totals and"
243+
"The plot shows the latest Creative Commons (CC) legal tool totals and"
244244
" percentages.",
245245
)
246246

247247

248248
def plot_prior_tools(args):
249249
"""
250-
Create plots for prior CC legal tool totals and percentages
250+
Create a plot for prior CC legal tool totals and percentages
251251
"""
252252
LOGGER.info(plot_prior_tools.__doc__.strip())
253253
file_path = shared.path_join(
@@ -283,16 +283,15 @@ def plot_prior_tools(args):
283283
SECTION_TITLE,
284284
title,
285285
image_path,
286-
"Plots showing prior Creative Commons (CC) legal tool totals and"
287-
" percentages.",
288-
"The unit names have been normalized (~~`CC BY-ND-NC`~~ =>"
289-
" `CC BY-NC-ND`).",
286+
"The plot shows prior Creative Commons (CC) legal tool totals and"
287+
" percentages. The unit names have been normalized (~~`CC BY-ND-NC`~~"
288+
" => `CC BY-NC-ND`).",
290289
)
291290

292291

293292
def plot_retired_tools(args):
294293
"""
295-
Create plots for retired CC legal tool totals and percentages
294+
Create a plot for retired CC legal tool totals and percentages
296295
"""
297296
LOGGER.info(plot_retired_tools.__doc__.strip())
298297
file_path = shared.path_join(
@@ -330,16 +329,16 @@ def plot_retired_tools(args):
330329
SECTION_TITLE,
331330
title,
332331
image_path,
333-
"Plots showing retired Creative Commons (CC) legal tools total and"
334-
" percentages.",
335-
"For more information on retired legal tools, see [Retired Legal Tools"
336-
" - Creative Commons](https://creativecommons.org/retiredlicenses/).",
332+
"The plot shows retired Creative Commons (CC) legal tools total and"
333+
" percentages. For more information on retired legal tools, see"
334+
" [Retired Legal Tools - Creative Commons]"
335+
"(https://creativecommons.org/retiredlicenses/).",
337336
)
338337

339338

340339
def plot_countries_highest_usage(args):
341340
"""
342-
Create plots for the countries with highest usage of latest tools
341+
Create a plot for the countries with highest usage of latest tools
343342
"""
344343
LOGGER.info(plot_countries_highest_usage.__doc__.strip())
345344
file_path = shared.path_join(
@@ -380,20 +379,20 @@ def plot_countries_highest_usage(args):
380379
SECTION_TITLE,
381380
title,
382381
image_path,
383-
"Plots showing countries with the highest useage of the latest"
382+
"The plot shows countries with the highest useage of the latest"
384383
" Creative Commons (CC) legal tools.",
385384
"The latest tools include Licenses version 4.0 (CC BY 4.0, CC BY-NC"
386385
" 4.0, CC BY-NC-ND 4.0, CC BY-NC-SA 4.0, CC-BY-ND 4.0, CC BY-SA 4.0),"
387386
" CC0 1.0, and the Public Domain Mark (PDM 1.0).\n"
388387
"\n"
389388
f"The complete data set indicates there are a total of {total_count}"
390-
" online works using a latest CC legal tool.",
389+
" online works using one of the latest CC legal tools.",
391390
)
392391

393392

394393
def plot_languages_highest_usage(args):
395394
"""
396-
Create plots for the languages with highest usage of latest tools
395+
Create a plot for the languages with highest usage of latest tools
397396
"""
398397
LOGGER.info(plot_languages_highest_usage.__doc__.strip())
399398
file_path = shared.path_join(
@@ -434,20 +433,20 @@ def plot_languages_highest_usage(args):
434433
SECTION_TITLE,
435434
title,
436435
image_path,
437-
"Plots showing languages with the highest useage of the latest"
436+
"The plot shows the languages with the highest useage of the latest"
438437
" Creative Commons (CC) legal tools.",
439438
"The latest tools include Licenses version 4.0 (CC BY 4.0, CC BY-NC"
440439
" 4.0, CC BY-NC-ND 4.0, CC BY-NC-SA 4.0, CC-BY-ND 4.0, CC BY-SA 4.0),"
441440
" CC0 1.0, and the Public Domain Mark (PDM 1.0).\n"
442441
"\n"
443442
f"The complete data set indicates there are a total of {total_count}"
444-
" online works using a latest CC legal tool.",
443+
" online works using one of the latest CC legal tools.",
445444
)
446445

447446

448447
def plot_free_culture(args):
449448
"""
450-
Create plots for the languages with highest usage of latest tools
449+
Create a plot for the languages with highest usage of latest tools
451450
"""
452451
LOGGER.info(plot_free_culture.__doc__.strip())
453452
file_path = shared.path_join(
@@ -482,7 +481,7 @@ def plot_free_culture(args):
482481
SECTION_TITLE,
483482
title,
484483
image_path,
485-
"Plots showing Approved for Free Cultural Works legal tool usage.",
484+
"The plot shows Approved for Free Cultural Works legal tool usage.",
486485
"[Understanding Free Cultural Works - Creative"
487486
" Commons](https://creativecommons.org/public-domain/freeworks/):\n"
488487
"\n"

0 commit comments

Comments
 (0)