mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
487 B
Java
28 lines
487 B
Java
package com.todoroo.astrid.test;
|
|
|
|
|
|
|
|
import com.timsu.astrid.R;
|
|
import com.todoroo.andlib.test.TranslationTests;
|
|
|
|
public class AstridTranslationTests extends TranslationTests {
|
|
|
|
@Override
|
|
public Class<?> getArrayResources() {
|
|
return R.array.class;
|
|
}
|
|
|
|
@Override
|
|
public Class<?> getStringResources() {
|
|
return R.string.class;
|
|
}
|
|
|
|
@Override
|
|
public int[] getDateFormatStrings() {
|
|
return new int[] {
|
|
//
|
|
};
|
|
}
|
|
|
|
}
|