Commit 36b9b6f8 authored by Matthew Finkel's avatar Matthew Finkel
Browse files

Bug 40020: Change app name

parent 0e67d03b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,5 +4,5 @@
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<resources>
    <!-- Name of the application -->
    <string name="app_name" translatable="false">Firefox Beta</string>
    <string name="app_name" translatable="false">Tor Browser Alpha</string>
</resources>
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<resources>
    <!-- Name of the application -->
    <string name="app_name" translatable="false">Firefox Preview</string>
    <string name="app_name" translatable="false">Tor Browser Dev</string>

    <!-- Preference for developers -->
    <string name="preference_leakcanary" translatable="false">LeakCanary</string>
+1 −1
Original line number Diff line number Diff line
@@ -4,5 +4,5 @@
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<resources>
    <!-- Name of the application -->
    <string name="app_name" translatable="false">Firefox Nightly</string>
    <string name="app_name" translatable="false">Tor Browser Nightly</string>
</resources>
+1 −1
Original line number Diff line number Diff line
@@ -4,5 +4,5 @@
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<resources>
    <!-- Name of the application -->
    <string name="app_name" translatable="false">Firefox</string>
    <string name="app_name" translatable="false">Tor Browser</string>
</resources>
+3 −3
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ class ContextTest {

    private lateinit var mockContext: Context
    private val selectedLocale = Locale("ro", "RO")
    private val appName = "Firefox Preview"
    private val appName = "Tor Browser Dev"

    private val mockId: Int = 11

@@ -61,7 +61,7 @@ class ContextTest {

        val result = mockContext.getStringWithArgSafe(mockId, appName)

        assertEquals("Incearca noul Firefox Preview", result)
        assertEquals("Incearca noul Tor Browser Dev", result)
    }

    @Test
@@ -74,7 +74,7 @@ class ContextTest {

        val result = mockContext.getStringWithArgSafe(mockId, appName)

        assertEquals("Try the new Firefox Preview", result)
        assertEquals("Try the new Tor Browser Dev", result)
    }

    @Test
Loading