Update copyright statements to 2019

This commit is contained in:
Rémi Verschelde 2019-06-04 11:41:49 +02:00
parent c38f3ee027
commit 7562ce053a
1367 changed files with 2740 additions and 2740 deletions

View file

@ -5,8 +5,8 @@
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
@ -3135,7 +3135,7 @@ Error EditorNode::save_translatable_strings(const String &p_to_file) {
OS::Time time = OS::get_singleton()->get_time();
f->store_line("# Translation Strings Dump.");
f->store_line("# Created By.");
f->store_line("# \t" VERSION_FULL_NAME " (c) 2007-2018 Juan Linietsky, Ariel Manzur.");
f->store_line("# \t" VERSION_FULL_NAME " (c) 2007-2019 Juan Linietsky, Ariel Manzur.");
f->store_line("# From Scene: ");
f->store_line("# \t" + get_edited_scene()->get_filename());
f->store_line("");
@ -6087,7 +6087,7 @@ EditorNode::EditorNode() {
about->add_child(vbc);
vbc->add_child(hbc);
Label *about_text = memnew(Label);
about_text->set_text(VERSION_FULL_NAME + String::utf8("\n\u00A9 2007-2018 Juan Linietsky, Ariel Manzur.\n\u00A9 2014-2018 ") + TTR("Godot Engine contributors") + "\n");
about_text->set_text(VERSION_FULL_NAME + String::utf8("\n\u00A9 2007-2019 Juan Linietsky, Ariel Manzur.\n\u00A9 2014-2019 ") + TTR("Godot Engine contributors") + "\n");
TextureFrame *logo = memnew(TextureFrame);
logo->set_texture(gui_base->get_icon("Logo", "EditorIcons"));
hbc->add_child(logo);