Przeglądaj źródła

Code review fixes

Bartosz Przybylski 9 lat temu
rodzic
commit
a811fe21e4

+ 2 - 1
res/drawable/indicator_dot_not_selected.xml

@@ -2,8 +2,9 @@
 <!--
   ownCloud Android client application
 
-  Copyright (C) 2015 Bartosz Przybylski
+  Copyright (C) 2015-2016 Bartosz Przybylski
   Copyright (C) 2015 ownCloud Inc.
+  Copyright (C) 2016 nextCloud
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 2,

+ 2 - 1
res/drawable/indicator_dot_selected.xml

@@ -2,8 +2,9 @@
 <!--
   ownCloud Android client application
 
-  Copyright (C) 2015 Bartosz Przybylski
+  Copyright (C) 2015-2016 Bartosz Przybylski
   Copyright (C) 2015 ownCloud Inc.
+  Copyright (C) 2016 nextCloud
 
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 2,

+ 1 - 1
res/values/strings.xml

@@ -546,7 +546,7 @@
     <string name="storage_description_unknown">Unknown</string>
 
     <!-- What's new feature and texts to show -->
-    <string name="welcome_to_oc_title">Welcome to nextCloud!</string>
+    <string name="welcome_to_nc_title">Welcome to nextCloud!</string>
     <string name="whats_new_title">What\'s new in nextCloud</string>
 
     <!-- Welcome to oC intro features -->

+ 3 - 2
src/com/owncloud/android/ui/activity/WhatsNewActivity.java

@@ -1,8 +1,9 @@
 /**
  *   ownCloud Android client application
  *
- *   Copyright (C) 2015 Bartosz Przybylski
+ *   Copyright (C) 2015-2016 Bartosz Przybylski
  *   Copyright (C) 2015 ownCloud Inc.
+ *   Copyright (C) 2016 nextCloud
  *
  *   This program is free software: you can redistribute it and/or modify
  *   it under the terms of the GNU General Public License version 2,
@@ -98,7 +99,7 @@ public class WhatsNewActivity extends FragmentActivity implements ViewPager.OnPa
         });
 
         TextView tv = (TextView)findViewById(R.id.welcomeText);
-        tv.setText(isFirstRun() ? R.string.welcome_to_oc_title : R.string.whats_new_title);
+        tv.setText(isFirstRun() ? R.string.welcome_to_nc_title : R.string.whats_new_title);
 
         updateNextButtonIfNeeded();
     }