Skip to content

Commit

Permalink
Crowdin: Fix creative common license name
Browse files Browse the repository at this point in the history
  • Loading branch information
luzpaz authored and wwmayer committed Oct 5, 2019
1 parent 8589f7e commit 5f8d274
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions src/App/Document.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1522,27 +1522,27 @@ Document::Document(const char *name)
licenseUrl = "http://en.wikipedia.org/wiki/All_rights_reserved";
break;
case 1:
license = "CreativeCommons Attribution";
license = "Creative Commons Attribution";
licenseUrl = "http://creativecommons.org/licenses/by/4.0/";
break;
case 2:
license = "CreativeCommons Attribution-ShareAlike";
license = "Creative Commons Attribution-ShareAlike";
licenseUrl = "http://creativecommons.org/licenses/by-sa/4.0/";
break;
case 3:
license = "CreativeCommons Attribution-NoDerivatives";
license = "Creative Commons Attribution-NoDerivatives";
licenseUrl = "http://creativecommons.org/licenses/by-nd/4.0/";
break;
case 4:
license = "CreativeCommons Attribution-NonCommercial";
license = "Creative Commons Attribution-NonCommercial";
licenseUrl = "http://creativecommons.org/licenses/by-nc/4.0/";
break;
case 5:
license = "CreativeCommons Attribution-NonCommercial-ShareAlike";
license = "Creative Commons Attribution-NonCommercial-ShareAlike";
licenseUrl = "http://creativecommons.org/licenses/by-nc-sa/4.0/";
break;
case 6:
license = "CreativeCommons Attribution-NonCommercial-NoDerivatives";
license = "Creative Commons Attribution-NonCommercial-NoDerivatives";
licenseUrl = "http://creativecommons.org/licenses/by-nc-nd/4.0/";
break;
case 7:
Expand Down
12 changes: 6 additions & 6 deletions src/Gui/DlgProjectInformationImp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ DlgProjectInformationImp::DlgProjectInformationImp(App::Document* doc, QWidget*

QList<QByteArray> rawLicenses; rawLicenses
<< "All rights reserved"
<< "CreativeCommons Attribution"
<< "CreativeCommons Attribution-ShareAlike"
<< "CreativeCommons Attribution-NoDerivatives"
<< "CreativeCommons Attribution-NonCommercial"
<< "CreativeCommons Attribution-NonCommercial-ShareAlike"
<< "CreativeCommons Attribution-NonCommercial-NoDerivatives"
<< "Creative Commons Attribution"
<< "Creative Commons Attribution-ShareAlike"
<< "Creative Commons Attribution-NoDerivatives"
<< "Creative Commons Attribution-NonCommercial"
<< "Creative Commons Attribution-NonCommercial-ShareAlike"
<< "Creative Commons Attribution-NonCommercial-NoDerivatives"
<< "Public Domain"
<< "FreeArt"
<< "Other";
Expand Down
12 changes: 6 additions & 6 deletions src/Gui/DlgSettingsDocument.ui
Original file line number Diff line number Diff line change
Expand Up @@ -542,32 +542,32 @@ You can also use the form: John Doe &lt;john@doe.com&gt;</string>
</item>
<item>
<property name="text">
<string>CreativeCommons Attribution</string>
<string>Creative Commons Attribution</string>
</property>
</item>
<item>
<property name="text">
<string>CreativeCommons Attribution-ShareAlike</string>
<string>Creative Commons Attribution-ShareAlike</string>
</property>
</item>
<item>
<property name="text">
<string>CreativeCommons Attribution-NoDerivatives</string>
<string>Creative Commons Attribution-NoDerivatives</string>
</property>
</item>
<item>
<property name="text">
<string>CreativeCommons Attribution-NonCommercial</string>
<string>Creative Commons Attribution-NonCommercial</string>
</property>
</item>
<item>
<property name="text">
<string>CreativeCommons Attribution-NonCommercial-ShareAlike</string>
<string>Creative Commons Attribution-NonCommercial-ShareAlike</string>
</property>
</item>
<item>
<property name="text">
<string>CreativeCommons Attribution-NonCommercial-NoDerivatives</string>
<string>Creative Commons Attribution-NonCommercial-NoDerivatives</string>
</property>
</item>
<item>
Expand Down

0 comments on commit 5f8d274

Please sign in to comment.