diff --git a/OpenScienceJournal/whistlepunk_library/src/main/java/com/google/android/apps/forscience/whistlepunk/project/ExperimentListFragment.java b/OpenScienceJournal/whistlepunk_library/src/main/java/com/google/android/apps/forscience/whistlepunk/project/ExperimentListFragment.java index 79ba2362..024a2fab 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/java/com/google/android/apps/forscience/whistlepunk/project/ExperimentListFragment.java +++ b/OpenScienceJournal/whistlepunk_library/src/main/java/com/google/android/apps/forscience/whistlepunk/project/ExperimentListFragment.java @@ -24,13 +24,17 @@ import android.content.IntentFilter; import android.content.SharedPreferences; import android.content.res.Resources; +import android.graphics.Typeface; import android.graphics.drawable.Drawable; import android.net.ConnectivityManager; import android.os.Bundle; import android.os.Handler; import android.text.Html; +import android.text.Spannable; +import android.text.SpannableStringBuilder; import android.text.TextUtils; import android.text.format.DateFormat; +import android.text.style.StyleSpan; import android.util.Log; import android.util.TimingLogger; import android.view.Gravity; @@ -86,6 +90,7 @@ import com.google.android.apps.forscience.whistlepunk.metadata.GoosciTextLabelValue.TextLabelValue; import com.google.android.apps.forscience.whistlepunk.performance.PerfTrackerProvider; import com.google.android.apps.forscience.whistlepunk.review.DeleteMetadataItemDialog; +import com.google.android.material.dialog.MaterialAlertDialogBuilder; import com.google.android.material.floatingactionbutton.FloatingActionButton; import com.google.android.material.snackbar.Snackbar; import com.google.common.base.Preconditions; @@ -753,11 +758,18 @@ private void syncLater(String logMessage) { } private void confirmClaimUnclaimedExperiments() { - Context context = getContext(); + final Context context = requireContext(); final String username = claimingAccount != null && claimingAccount.isSignedIn() ? claimingAccount.getAccountName() : ""; - AlertDialog.Builder builder = new AlertDialog.Builder(context); + final AlertDialog.Builder builder = new MaterialAlertDialogBuilder(context, R.style.AlertDialogTheme); + final String message = getString(R.string.claim_experiments_confirm_all_message, username); + final SpannableStringBuilder messageBuilder = new SpannableStringBuilder(message); + messageBuilder.setSpan(new StyleSpan(Typeface.BOLD), + message.lastIndexOf(username), + message.length() - 1, // Don't apply bold to the question mark at the end. + Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); + builder.setTitle(R.string.claim_experiments_confirm_all_title); - builder.setMessage(getString(R.string.claim_experiments_confirm_all_message, username)); + builder.setMessage(messageBuilder); builder.setNegativeButton(android.R.string.cancel, (dialog, which) -> dialog.cancel()); builder.setPositiveButton( R.string.claim_experiments_action, @@ -1359,16 +1371,24 @@ private void promptBeforeClaimExperiment(String experimentId) { if (parentReference.get().claimProgressBarVisible) { return; } - AlertDialog.Builder builder = new AlertDialog.Builder(parentReference.get().getContext()); - builder.setMessage(R.string.claim_experiments_confirm_one); - builder.setNegativeButton(android.R.string.cancel, (dialog, which) -> dialog.cancel()); - builder.setPositiveButton( - R.string.claim_experiments_action, - (dialog, which) -> { + + final String username = claimingAccount != null && claimingAccount.isSignedIn() ? claimingAccount.getAccountName() : ""; + final String message = getString(R.string.claim_experiments_confirm_one_message, username); + final SpannableStringBuilder messageBuilder = new SpannableStringBuilder(message); + messageBuilder.setSpan(new StyleSpan(Typeface.BOLD), + message.lastIndexOf(username), + message.length() - 1, // Don't apply bold to the question mark at the end. + Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); + + final MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(parentReference.get().requireContext(), R.style.AlertDialogTheme) + .setTitle(R.string.claim_experiments_confirm_one) + .setMessage(messageBuilder) + .setNegativeButton(android.R.string.cancel, (dialog, which) -> dialog.cancel()) + .setPositiveButton(R.string.claim_experiments_action, (dialog, which) -> { claimExperiment(experimentId); dialog.dismiss(); }); - AlertDialog dialog = builder.create(); + final AlertDialog dialog = builder.create(); dialog.show(); // Need to reset the content description so the button will be read correctly b/116869645 dialog diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/layout/activity_claim_experiments.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/layout/activity_claim_experiments.xml index 30119e87..1cc684fc 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/layout/activity_claim_experiments.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/layout/activity_claim_experiments.xml @@ -22,7 +22,7 @@ android:layout_width="40dp" android:layout_height="40dp" android:layout_marginStart="18dp" - android:background="@null" + android:background="?selectableItemBackgroundBorderless" android:contentDescription="@null" android:scaleType="centerInside" android:src="@drawable/ic_arduino_auth_close" @@ -49,7 +49,7 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="15dp" - android:layout_marginEnd="30dp" + android:layout_marginEnd="15dp" android:ellipsize="end" android:fontFamily="@font/open_sans_bold" android:gravity="center" diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ar/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ar/strings.xml index f874fb73..6eb27a0c 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ar/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ar/strings.xml @@ -707,7 +707,8 @@ An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? المطالبة بملكية تَجارب سابقة Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-bg/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-bg/strings.xml index 2c076e6e..28fbc83e 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-bg/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-bg/strings.xml @@ -695,7 +695,8 @@ g.co/sciencejournalactivities An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Заявяване на минали експерименти Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-bs-rBA/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-bs-rBA/strings.xml index 59279dc8..6393cf73 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-bs-rBA/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-bs-rBA/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Polaganje prava na prošle eksperimente Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ca/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ca/strings.xml index 28b658bd..bad0cd21 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ca/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ca/strings.xml @@ -694,7 +694,8 @@ Si tens dades en aquest dispositiu, inicia la sessió per desar els teus experim An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclama experiments anteriors Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-cs/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-cs/strings.xml index bdd5b76f..dbf5766a 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-cs/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-cs/strings.xml @@ -699,7 +699,8 @@ experimentovat s okolním světem An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Nárokování starších experimentů Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-da/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-da/strings.xml index 170e851a..060fac74 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-da/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-da/strings.xml @@ -693,7 +693,8 @@ Hvis du har eksisterende data på denne enhed, kan du, når du er logget ind, ge An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Gør krav på tidligere eksperimenter Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-de-rAT/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-de-rAT/strings.xml index 747530a5..5c1e0dff 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-de-rAT/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-de-rAT/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Vorherige Experimente anfordern Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-de-rCH/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-de-rCH/strings.xml index 4f506b94..a17eccd1 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-de-rCH/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-de-rCH/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Vorherige Experimente anfordern Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-de/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-de/strings.xml index 49ae4f70..42c379af 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-de/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-de/strings.xml @@ -693,7 +693,8 @@ Experimente in Ihrer Umgebung durchführen An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Vorherige Experimente anfordern Umgebungslicht lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-el/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-el/strings.xml index 1fe82d54..8a392ce5 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-el/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-el/strings.xml @@ -694,7 +694,8 @@ g.co/sciencejournalactivities και δοκιμάστε τις An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Αξίωση παλιότερων πειραμάτων Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rAU/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rAU/strings.xml index 8e2e37cb..6886c44c 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rAU/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rAU/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Claim past experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rCA/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rCA/strings.xml index 8e2e37cb..6886c44c 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rCA/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rCA/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Claim past experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rGB/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rGB/strings.xml index ce16665e..8d55c1a3 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rGB/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rGB/strings.xml @@ -694,7 +694,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Claim past experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rIE/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rIE/strings.xml index 8e2e37cb..6886c44c 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rIE/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rIE/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Claim past experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rIN/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rIN/strings.xml index 8e2e37cb..6886c44c 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rIN/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rIN/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Claim past experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rSG/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rSG/strings.xml index 8e2e37cb..6886c44c 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rSG/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rSG/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Claim past experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rZA/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rZA/strings.xml index 8e2e37cb..6886c44c 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rZA/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-en-rZA/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Claim past experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rAR/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rAR/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rAR/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rAR/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rBO/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rBO/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rBO/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rBO/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCL/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCL/strings.xml index d9614d3e..a5cc81e3 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCL/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCL/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCO/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCO/strings.xml index d9614d3e..a5cc81e3 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCO/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCO/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCR/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCR/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCR/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rCR/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rDO/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rDO/strings.xml index d9614d3e..a5cc81e3 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rDO/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rDO/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rEC/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rEC/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rEC/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rEC/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rGT/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rGT/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rGT/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rGT/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rHN/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rHN/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rHN/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rHN/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rMX/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rMX/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rMX/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rMX/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rNI/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rNI/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rNI/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rNI/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPA/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPA/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPA/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPA/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPE/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPE/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPE/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPE/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPR/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPR/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPR/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPR/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPY/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPY/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPY/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rPY/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rSV/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rSV/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rSV/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rSV/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rUS/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rUS/strings.xml index db651342..2ca8462e 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rUS/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rUS/strings.xml @@ -672,7 +672,8 @@ Si ya hay datos de experimentos almacenados en este dispositivo, accede para gua An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rUY/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rUY/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rUY/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rUY/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rVE/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rVE/strings.xml index a5a3029b..86e581a7 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rVE/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es-rVE/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es/strings.xml index 09c9a6f5..48972e64 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-es/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-es/strings.xml @@ -695,7 +695,8 @@ Si ya tienes datos en este dispositivo, podrás guardar tus experimentos actuale An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reclamar experimentos anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-fi/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-fi/strings.xml index f210d7ac..90401b8c 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-fi/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-fi/strings.xml @@ -695,7 +695,7 @@ Jos tällä laitteella on aiemmin tekemiesi kokeiden dataa, voit tallentaa kokee An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Ota aiemmat kokeet itsellesi Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-fil/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-fil/strings.xml index 3d7008d9..99166725 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-fil/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-fil/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Mag-claim ng mga nakaraang eksperimento Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-fr-rCH/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-fr-rCH/strings.xml index 6049fecf..eebc22f6 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-fr-rCH/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-fr-rCH/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Revendiquer d\'anciennes expériences Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-fr/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-fr/strings.xml index 961564eb..c0bfa16e 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-fr/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-fr/strings.xml @@ -695,7 +695,8 @@ Si vous avez des données sur cet appareil, vous pouvez les enregistrer sur Goog Instrument utilisé pour mesurer l\'intensité et la direction d\'un champ magnétique La mesure de la difficulté du passage du courant à travers un objet ou un matériau La différence de potentiel électrique entre deux endroits qui permet à un courant de circuler - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Revendiquer d\'anciennes expériences Lumière ambiante lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-gsw/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-gsw/strings.xml index 747530a5..5c1e0dff 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-gsw/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-gsw/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Vorherige Experimente anfordern Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-hi-rIN/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-hi-rIN/strings.xml index a8c97cd0..19155da6 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-hi-rIN/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-hi-rIN/strings.xml @@ -691,7 +691,8 @@ g.co/sciencejournalactivities An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? पिछले प्रयोगों पर दावा करें Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-hr/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-hr/strings.xml index fc6a569f..418d4f78 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-hr/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-hr/strings.xml @@ -698,7 +698,8 @@ Ako imate podatke na ovom uređaju, svoje postojeće eksperimente možete spremi An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Polaganje prava na prošle eksperimente Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-hu/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-hu/strings.xml index 3036d833..646e89f1 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-hu/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-hu/strings.xml @@ -695,7 +695,8 @@ Ha már vannak adatok az eszközön, a bejelentkezést követően elmentheted a An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Múltbeli kísérletek követelése Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-in/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-in/strings.xml index d877adbc..3cd7fdfe 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-in/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-in/strings.xml @@ -692,7 +692,8 @@ Setelah login, Anda dapat menyimpan eksperimen yang ada ke Google Drive, jika da An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Klaim eksperimen lama Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-it/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-it/strings.xml index 47fe9fd9..d16d9c98 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-it/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-it/strings.xml @@ -673,7 +673,8 @@ Se sono presenti dati su questo dispositivo, una volta effettuato l\'accesso pot Uno strumento utilizzato per misurare l\'intensità e la direzione di un campo magnetico La misura della difficoltà del flusso di corrente attraverso un oggetto o un materiale La differenza di potenziale elettrico tra due luoghi che consente a una corrente di fluire - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Rivendica esperimenti completati Luce ambientale lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-iw/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-iw/strings.xml index 05ad24c7..ff46db46 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-iw/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-iw/strings.xml @@ -701,7 +701,8 @@ g.co/sciencejournalactivities An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? תביעת בעלות על ניסויים קודמים Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ja/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ja/strings.xml index e6fe3392..6ff7eab2 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ja/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ja/strings.xml @@ -692,7 +692,8 @@ An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? 過去の実験をアカウントに関連付ける Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ko/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ko/strings.xml index 966d5a0e..1ddb1871 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ko/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ko/strings.xml @@ -692,7 +692,8 @@ g.co/sciencejournalactivities An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? 이전 실험 소유권 주장 Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ln/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ln/strings.xml index 6049fecf..eebc22f6 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ln/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ln/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Revendiquer d\'anciennes expériences Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-lt/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-lt/strings.xml index c0c02d17..6906ecd8 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-lt/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-lt/strings.xml @@ -701,7 +701,8 @@ Jei šiame įrenginyje saugote duomenų, prisijungę galite išsaugoti esamus ek An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reikšti teises į įvykdytus eksperimentus Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-lv/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-lv/strings.xml index 5c669579..f1adde29 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-lv/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-lv/strings.xml @@ -675,7 +675,8 @@ Ja jums šajā ierīcē jau ir dati, pēc pierakstīšanās savus eksperimentus An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Pieteikšanās — jau veiktie eksperimenti Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-nb/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-nb/strings.xml index 6b62d640..108fcbb0 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-nb/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-nb/strings.xml @@ -695,7 +695,8 @@ Hvis du har data på denne enheten fra før, kan du lagre de eksisterende eksper An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Gjør krav på tidligere eksperimenter Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-nl/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-nl/strings.xml index fb52f2d3..bda0660d 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-nl/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-nl/strings.xml @@ -695,7 +695,8 @@ Als er al gegevens op dit apparaat staan, kun je inloggen om je bestaande experi An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Eerdere experimenten claimen Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-pl/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-pl/strings.xml index 081d6bcb..9c0fec0f 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-pl/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-pl/strings.xml @@ -677,7 +677,8 @@ Jeśli masz już dane na tym urządzeniu, po zalogowaniu się możesz zapisać i An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Zgłoś prawa do starszych doświadczeń Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt-rBR/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt-rBR/strings.xml index 69429f90..f002cc67 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt-rBR/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt-rBR/strings.xml @@ -693,7 +693,8 @@ experimentos no mundo ao seu redor An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reivindicar experimentos antigos Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt-rPT/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt-rPT/strings.xml index d71ee1c8..cacbeec4 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt-rPT/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt-rPT/strings.xml @@ -694,7 +694,8 @@ Se tiver dados neste dispositivo, após iniciar sessão, pode guardar as experi An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reivindicar experiências anteriores Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt/strings.xml index 68b27243..44e5fcea 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-pt/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Reivindicar experimentos antigos Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ro/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ro/strings.xml index 8d40f9eb..5d3bdcf3 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ro/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ro/strings.xml @@ -698,7 +698,8 @@ Dacă aveți deja date pe acest dispozitiv, după conectare, puteți să salvaț An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Revendicați experimente anterioare Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ru/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ru/strings.xml index 2d1201e5..92e94d94 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-ru/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-ru/strings.xml @@ -678,7 +678,8 @@ An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Ранее проведенные эксперименты Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-sk/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-sk/strings.xml index 936d0669..073cbb9f 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-sk/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-sk/strings.xml @@ -701,7 +701,8 @@ Ak máte v tomto zariadení existujúce údaje, po prihlásení si môžete exi An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Nárokovanie minulých experimentov Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-sl/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-sl/strings.xml index 5fe4597b..7248767e 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-sl/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-sl/strings.xml @@ -701,7 +701,8 @@ poskuse v svetu okoli sebe An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Zahtevanje preteklih poskusov Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-sr/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-sr/strings.xml index d4f0b75c..9d954173 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-sr/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-sr/strings.xml @@ -699,7 +699,8 @@ g.co/sciencejournalactivities An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Преузмите прошле експерименте Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-sv/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-sv/strings.xml index b18148e3..2bf053d4 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-sv/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-sv/strings.xml @@ -694,7 +694,8 @@ Om du har befintlig data på den här enheten kan du, när du är inloggad, spar An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Gör anspråk på tidigare experiment Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-th/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-th/strings.xml index 6c85509b..2c0e97f3 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-th/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-th/strings.xml @@ -692,7 +692,8 @@ g.co/sciencejournalactivities An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? อ้างสิทธิ์การทดลองที่ผ่านมา Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-tl/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-tl/strings.xml index f5d6a5f4..441f7599 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-tl/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-tl/strings.xml @@ -704,7 +704,8 @@ Kung dati ka nang may data sa device na ito, kapag naka-sign in na, maaari mong An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Collect Experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-tr/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-tr/strings.xml index 0d0148f5..08f9c02a 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-tr/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-tr/strings.xml @@ -695,7 +695,8 @@ Bu cihazda mevcut verileriniz varsa oturum açtıktan sonra deneylerinizi Google An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Eski denemeleri talep et Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-uk/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-uk/strings.xml index 7c6a965f..c21beaf0 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-uk/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-uk/strings.xml @@ -701,7 +701,8 @@ g.co/sciencejournalactivities An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Заявити права на колишні експерименти Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-vi/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-vi/strings.xml index 7cb93f9a..3610281f 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-vi/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-vi/strings.xml @@ -692,7 +692,8 @@ Nếu bạn đang có dữ liệu trên thiết bị này thì sau khi đã đă An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Xác nhận thử nghiệm trước đó Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rCN/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rCN/strings.xml index 630fae1f..275342ff 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rCN/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rCN/strings.xml @@ -668,7 +668,8 @@ g.co/sciencejournalactivities,查找你可以尝试的活动 An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? 申领之前的实验 Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rHK/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rHK/strings.xml index ba507847..879f1f8e 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rHK/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rHK/strings.xml @@ -712,7 +712,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? 認領舊實驗 Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rTW/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rTW/strings.xml index e52a500b..38ae9eb1 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rTW/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values-zh-rTW/strings.xml @@ -685,7 +685,8 @@ g.co/sciencejournalactivities An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? 認領舊實驗 Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values/strings.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values/strings.xml index a92f0047..7fcb3b41 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values/strings.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values/strings.xml @@ -762,7 +762,8 @@ If you have existing data on this device, once signed in, you can save your exis An instrument used to measure the intensity and direction of a magnetic field The measure of the difficulty of current flow through an object or material The difference in electric potential between two places that allows a current to flow - Collect experiment? + Collect experiment + Are you sure to collect this experiment and add it to your account’s lab: %1$s’s Lab? Collect Experiments Ambient Light lux diff --git a/OpenScienceJournal/whistlepunk_library/src/main/res/values/styles.xml b/OpenScienceJournal/whistlepunk_library/src/main/res/values/styles.xml index c0d4ade7..d7c17ef5 100644 --- a/OpenScienceJournal/whistlepunk_library/src/main/res/values/styles.xml +++ b/OpenScienceJournal/whistlepunk_library/src/main/res/values/styles.xml @@ -47,6 +47,29 @@ @style/OpenSansButtonStyle + + + + + + + + +